summaryrefslogtreecommitdiffstats
path: root/source3/nmbd/nmbd.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2014-03-26 16:18:55 +0100
committerAndreas Schneider <asn@cryptomilk.org>2014-04-01 21:15:36 +0200
commitc7c969439d7c0b3ed6bd1999c7ff0db7686a2b84 (patch)
tree144513f73f6df3d110bfad48d4eae47ae0f20673 /source3/nmbd/nmbd.c
parent6cdde2711b5b4ad09f9703b2558db7c5d90e9a35 (diff)
downloadsamba-c7c969439d7c0b3ed6bd1999c7ff0db7686a2b84.tar.gz
samba-c7c969439d7c0b3ed6bd1999c7ff0db7686a2b84.tar.xz
samba-c7c969439d7c0b3ed6bd1999c7ff0db7686a2b84.zip
s3-nmbd: Align debug level for the same information.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=10388 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'source3/nmbd/nmbd.c')
-rw-r--r--source3/nmbd/nmbd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c
index 050afb3e83..80c2329b2d 100644
--- a/source3/nmbd/nmbd.c
+++ b/source3/nmbd/nmbd.c
@@ -947,12 +947,12 @@ static bool open_sockets(bool isdaemon, int port)
set_samba_nb_type();
if (!is_daemon && !is_a_socket(0)) {
- DEBUG(0,("standard input is not a socket, assuming -D option\n"));
+ DEBUG(3, ("standard input is not a socket, assuming -D option\n"));
is_daemon = True;
}
if (is_daemon && !opt_interactive) {
- DEBUG( 2, ( "Becoming a daemon.\n" ) );
+ DEBUG(3, ("Becoming a daemon.\n"));
become_daemon(Fork, no_process_group, log_stdout);
}