diff options
author | Jeremy Allison <jra@samba.org> | 2008-09-11 16:21:12 -0700 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2008-09-15 11:38:55 +0200 |
commit | d21630065c94ff7825114ed2c28367b989d6b3cc (patch) | |
tree | 10cd58352ae3c782d9e8f5ef728e4d7cd3de261d /source/client | |
parent | 679f2606d64ec6693aadc7ff579d45d769f988f2 (diff) | |
download | samba-d21630065c94ff7825114ed2c28367b989d6b3cc.tar.gz samba-d21630065c94ff7825114ed2c28367b989d6b3cc.tar.xz samba-d21630065c94ff7825114ed2c28367b989d6b3cc.zip |
Fix bug #5751 cannot show ACLs on DFS reported by SATOH Fumiyasu <fumiyas@osstech.co.jp>.
Fix for smbclient and libsmbclient.
Jeremy.
(cherry picked from commit 535d6a458d9cd6f800b1cdc5681be02b844d5cd5)
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c index 18b286324b6..7bc18ae710e 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -521,7 +521,7 @@ static void display_finfo(file_info *finfo, const char *dir) /* create absolute filename for cli_nt_create() FIXME */ afname = talloc_asprintf(ctx, "%s%s%s", - client_get_cwd(), + dir, CLI_DIRSEP_STR, finfo->name); if (!afname) { |