summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-05-04 12:36:13 +0200
committerKarolin Seeger <kseeger@samba.org>2009-06-10 16:17:49 +0200
commitfe2369e6edc18c08f51c0f62e57684db36dcf528 (patch)
tree1ab8a5f847243c241d91baa87b7dec43039714f0 /source
parent5ce20022af3d40fc590175a9d328ec0d4e08e145 (diff)
downloadsamba-fe2369e6edc18c08f51c0f62e57684db36dcf528.tar.gz
samba-fe2369e6edc18c08f51c0f62e57684db36dcf528.tar.xz
samba-fe2369e6edc18c08f51c0f62e57684db36dcf528.zip
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. (cherry picked from commit 65fe7c42c6c229a99b7cffc0515fc7a1ed30c43c)
Diffstat (limited to 'source')
-rw-r--r--source/smbd/service.c2
1 files changed, 1 insertions, 1 deletions
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);