summaryrefslogtreecommitdiff
path: root/source3/client/client.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-09-11 16:20:59 -0700
committerJeremy Allison <jra@samba.org>2008-09-11 16:20:59 -0700
commit65ae60489dc416c75112d576e94d84c26ec54875 (patch)
tree6b41c663772fcb8c0ba51a700b1d6250aef52e11 /source3/client/client.c
parentf25863e04cf3264575545701cb257bac8f0aee82 (diff)
downloadsamba-65ae60489dc416c75112d576e94d84c26ec54875.tar.gz
samba-65ae60489dc416c75112d576e94d84c26ec54875.tar.bz2
samba-65ae60489dc416c75112d576e94d84c26ec54875.zip
Fix bug #5751 cannot show ACLs on DFS reported by SATOH Fumiyasu <fumiyas@osstech.co.jp>.
Fix for smbclient and libsmbclient. Jeremy. (This used to be commit dbd5d6b145528527a614c6207d81a6c955e57461)
Diffstat (limited to 'source3/client/client.c')
-rw-r--r--source3/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 85f653e903..38da525db7 100644
--- a/source3/client/client.c
+++ b/source3/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) {