diff options
author | Tim Potter <tpot@samba.org> | 2001-10-26 22:58:32 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-10-26 22:58:32 +0000 |
commit | a9cf7fb2da28ad09702fda30486ae9698b2df21c (patch) | |
tree | ece695d22152f58724f2d8a1ca27fe1808187aaa | |
parent | d0015fae10bf1c65aa7abd1a9551eb2c268fdb8f (diff) | |
download | samba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.tar.gz samba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.tar.xz samba-a9cf7fb2da28ad09702fda30486ae9698b2df21c.zip |
Fixed compile warning.
(This used to be commit 320c21b7a9e0a914b8a9523775df8895cb41256f)
-rw-r--r-- | source3/smbd/mangle.c | 2 |
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); } |