summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-06-24 17:01:44 +0200
committerVolker Lendecke <vl@samba.org>2011-06-24 21:24:17 +0200
commitc8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3 (patch)
treebb59cbe2dd798940d5322bf6f99e97295157181a
parentdaec41c84614b485c8df90fc95467024bcb68110 (diff)
downloadsamba-c8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3.tar.gz
samba-c8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3.tar.bz2
samba-c8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3.zip
s3: Fix an error message in smbclient symlink
-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 15c5e9cc94..207147c6d0 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -3036,7 +3036,7 @@ static int cmd_symlink(void)
if (!NT_STATUS_IS_OK(status)) {
d_printf("%s symlinking files (%s -> %s)\n",
- nt_errstr(status), newname, newname);
+ nt_errstr(status), oldname, newname);
return 1;
}