summaryrefslogtreecommitdiffstats
path: root/source/client
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-09-11 16:18:54 -0700
committerKarolin Seeger <kseeger@samba.org>2008-09-15 10:58:31 +0200
commit023f8d6b91db702ddb33f6af0f43e026729f8742 (patch)
tree12df90eed8bf379200fe0e57c57523889c456065 /source/client
parent419990cc70df6d4f0ae61e15b19eef79be0e7fde (diff)
downloadsamba-023f8d6b91db702ddb33f6af0f43e026729f8742.tar.gz
samba-023f8d6b91db702ddb33f6af0f43e026729f8742.tar.xz
samba-023f8d6b91db702ddb33f6af0f43e026729f8742.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 71d00ef2888834ebed2a387a111a95bac1d227ad)
Diffstat (limited to 'source/client')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 438306e2ecb..24971385a1f 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) {