diff options
author | Matthieu Patou <mat@matws.net> | 2013-01-26 14:42:57 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-04-19 12:27:56 -0700 |
commit | aad5eeb9b4f67b03988ceefb7888cb63ecefcf30 (patch) | |
tree | ce102bb38a590d74dd8ac94a0299499ef5a94095 /source3/smbd | |
parent | d51b498017d612d9787b17b38ac0931ee0a90de0 (diff) | |
download | samba-aad5eeb9b4f67b03988ceefb7888cb63ecefcf30.tar.gz samba-aad5eeb9b4f67b03988ceefb7888cb63ecefcf30.tar.xz samba-aad5eeb9b4f67b03988ceefb7888cb63ecefcf30.zip |
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.
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 4c0832a8a0d..a7464f0722c 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()) ); |