summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper/smbw.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-04 06:44:20 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-04 06:44:20 +0000
commit83e93d2a4493546cb481f5c8187c64207b5901d1 (patch)
treeaf87e6c278f713e09a24b230fda044392947ff22 /source/smbwrapper/smbw.c
parentbbc891727e57172bf6200e10c32498776a77510b (diff)
downloadsamba-83e93d2a4493546cb481f5c8187c64207b5901d1.tar.gz
samba-83e93d2a4493546cb481f5c8187c64207b5901d1.tar.xz
samba-83e93d2a4493546cb481f5c8187c64207b5901d1.zip
refuse symlinks to or from a smb path
Diffstat (limited to 'source/smbwrapper/smbw.c')
-rw-r--r--source/smbwrapper/smbw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index e933fc36361..39c3eec90c1 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/smbwrapper/smbw.c
@@ -319,8 +319,8 @@ int smbw_errno(struct cli_state *c)
ret = cli_error(c, &eclass, &ecode);
if (ret) {
- DEBUG(3,("smbw_error %d %d (0x%x)\n",
- (int)eclass, (int)ecode, (int)ecode));
+ DEBUG(3,("smbw_error %d %d (0x%x) -> %d\n",
+ (int)eclass, (int)ecode, (int)ecode, ret));
}
return ret;
}