From: Volker Lendecke Date: Mon, 4 May 2009 10:36:13 +0000 (+0200) Subject: 3.3: Increase debug level of "create_connection_server_info failed" message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65fe7c42c6c229a99b7cffc0515fc7a1ed30c43c;p=thirdparty%2Fsamba.git 3.3: 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/source/smbd/service.c b/source/smbd/service.c index 98b25369d1b..4724dd7a59f 100644 --- a/source/smbd/service.c +++ b/source/smbd/service.c @@ -740,7 +740,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);