From a9cf7fb2da28ad09702fda30486ae9698b2df21c Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 26 Oct 2001 22:58:32 +0000 Subject: Fixed compile warning. (This used to be commit 320c21b7a9e0a914b8a9523775df8895cb41256f) --- source3/smbd/mangle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit