>From a4567d21cb22a34ecf8dd36aba4e53a29eaa78b1 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sat, 26 Jan 2013 14:42:57 -0800 Subject: [PATCH] fileserver: raise the debug level for share connection from non IPC to 2 So that logs of make test are not spamed, the code dates from 1999 maybe at that moment we wanted to have some warning I think nodays it's pretty stable. --- source3/smbd/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 4c0832a..a7464f0 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -845,7 +845,7 @@ static NTSTATUS make_connection_snum(struct smbd_server_connection *sconn, * (at least initially). */ - if( DEBUGLVL( IS_IPC(conn) ? 3 : 1 ) ) { + if( DEBUGLVL( IS_IPC(conn) ? 3 : 2 ) ) { dbgtext( "%s (%s) ", get_remote_machine_name(), tsocket_address_string(conn->sconn->remote_address, talloc_tos()) ); -- 1.7.9.5