diff options
author | Volker Lendecke <vl@samba.org> | 2011-06-24 17:01:44 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-06-24 21:24:17 +0200 |
commit | c8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3 (patch) | |
tree | bb59cbe2dd798940d5322bf6f99e97295157181a /source3/client | |
parent | daec41c84614b485c8df90fc95467024bcb68110 (diff) | |
download | samba-c8d374a0f23fe74b72e5bcfd62c3ff17dc6928e3.tar.gz |
s3: Fix an error message in smbclient symlink
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 15c5e9cc94a..207147c6d0a 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; } |