summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2015-07-08 14:40:25 -0700
committerJeremy Allison <jra@samba.org>2015-07-09 15:36:30 +0200
commit540899a2d9b276f0b5ee5d474c1d6ce876411c14 (patch)
tree7d3ddced5a79055af8d4bd317d2f2654c85eb8b6 /source3/smbd
parenta7fba97f98e7786c1c276b63e4b9e940d932447a (diff)
downloadsamba-540899a2d9b276f0b5ee5d474c1d6ce876411c14.tar.gz
dosmode: Change message of result to informational
Logging the returned mode bits should be only "informational" (level 5). Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Jul 9 15:36:30 CEST 2015 on sn-devel-104
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/dosmode.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index 714a7f861f8..72acd4edccc 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);
}