summaryrefslogtreecommitdiff
path: root/source3/smbd/mangle.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-10-26 22:58:32 +0000
committerTim Potter <tpot@samba.org>2001-10-26 22:58:32 +0000
commita9cf7fb2da28ad09702fda30486ae9698b2df21c (patch)
treeece695d22152f58724f2d8a1ca27fe1808187aaa /source3/smbd/mangle.c
parentd0015fae10bf1c65aa7abd1a9551eb2c268fdb8f (diff)
downloadsamba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.tar.gz
samba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.tar.bz2
samba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.zip
Fixed compile warning.
(This used to be commit 320c21b7a9e0a914b8a9523775df8895cb41256f)
Diffstat (limited to 'source3/smbd/mangle.c')
-rw-r--r--source3/smbd/mangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/mangle.c b/source3/smbd/mangle.c
index 40e66061af..01297c89a7 100644
--- a/source3/smbd/mangle.c
+++ b/source3/smbd/mangle.c
@@ -1586,7 +1586,7 @@ void mangle_name_83(char *s)
res = _mangle(u2);
if (res) ucs2_to_dos (s, res, 13); /* ugly, but must be done this way */
- DEBUG(10,("mangle_name_83: returning -> [%s]\n", res));
+ DEBUG(10,("mangle_name_83: returning -> [%s]\n", res?"True":"False"));
SAFE_FREE(res);
SAFE_FREE(u2);
}