From 540899a2d9b276f0b5ee5d474c1d6ce876411c14 Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Wed, 8 Jul 2015 14:40:25 -0700 Subject: [PATCH] dosmode: Change message of result to informational Logging the returned mode bits should be only "informational" (level 5). Signed-off-by: Christof Schmitt Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Thu Jul 9 15:36:30 CEST 2015 on sn-devel-104 --- source3/smbd/dosmode.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 714a7f861f8d..72acd4edccc4 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -192,8 +192,9 @@ mode_t unix_mode(connection_struct *conn, int dosmode, } } - DEBUG(3,("unix_mode(%s) returning 0%o\n", smb_fname_str_dbg(smb_fname), - (int)result)); + DBG_INFO("unix_mode(%s) returning 0%o\n", + smb_fname_str_dbg(smb_fname), (int)result); + return(result); } -- 2.34.1