From: Volker Lendecke Date: Mon, 4 May 2009 10:36:13 +0000 (+0200) Subject: Increase debug level of "create_connection_server_info failed" message X-Git-Tag: tdb-1.1.5~748 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=796764d92ba0afe2306f4955730e6afb80cb2eb7;p=thirdparty%2Fsamba.git Increase debug level of "create_connection_server_info failed" message I don't think we should unconditionally send every refused connection attempt to a share to syslog, that's where all debug level 0 messages end up. --- diff --git a/source3/smbd/service.c b/source3/smbd/service.c index c66a4d3f8c9..bc07f0b90d4 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -668,7 +668,7 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser, &conn->server_info); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("create_connection_server_info failed: %s\n", + DEBUG(1, ("create_connection_server_info failed: %s\n", nt_errstr(status))); *pstatus = status; conn_free(conn);