svn commit: samba r2588 - in branches/SAMBA_4_0/source/smbd: .

tridge at samba.org tridge at samba.org
Fri Sep 24 06:52:25 GMT 2004


Author: tridge
Date: 2004-09-24 06:52:19 +0000 (Fri, 24 Sep 2004)
New Revision: 2588

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/smbd&rev=2588&nolog=1

Log:
connect/disconnect is common enough that I don't think a level 0 DEBUG
is warranted to warn that it has happened :)


Modified:
   branches/SAMBA_4_0/source/smbd/process_single.c
   branches/SAMBA_4_0/source/smbd/process_standard.c
   branches/SAMBA_4_0/source/smbd/service.c


Changeset:
Modified: branches/SAMBA_4_0/source/smbd/process_single.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/process_single.c	2004-09-24 06:51:14 UTC (rev 2587)
+++ branches/SAMBA_4_0/source/smbd/process_single.c	2004-09-24 06:52:19 UTC (rev 2588)
@@ -66,7 +66,7 @@
 /* called when a SMB connection goes down */
 static void single_terminate_connection(struct server_connection *conn, const char *reason) 
 {
-	DEBUG(0,("single_terminate_connection: reason[%s]\n",reason));
+	DEBUG(2,("single_terminate_connection: reason[%s]\n",reason));
 
 	if (conn) {
 		if (conn->service) {

Modified: branches/SAMBA_4_0/source/smbd/process_standard.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/process_standard.c	2004-09-24 06:51:14 UTC (rev 2587)
+++ branches/SAMBA_4_0/source/smbd/process_standard.c	2004-09-24 06:52:19 UTC (rev 2588)
@@ -89,7 +89,7 @@
 /* called when a SMB connection goes down */
 static void standard_terminate_connection(struct server_connection *conn, const char *reason) 
 {
-	DEBUG(0,("single_terminate_connection: reason[%s]\n",reason));
+	DEBUG(2,("single_terminate_connection: reason[%s]\n",reason));
 
 	if (conn) {
 		if (conn->service) {

Modified: branches/SAMBA_4_0/source/smbd/service.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/service.c	2004-09-24 06:51:14 UTC (rev 2587)
+++ branches/SAMBA_4_0/source/smbd/service.c	2004-09-24 06:52:19 UTC (rev 2588)
@@ -239,7 +239,7 @@
 */
 void server_terminate_connection(struct server_connection *srv_conn, const char *reason)
 {
-	DEBUG(0,("server_terminate_connection\n"));
+	DEBUG(2,("server_terminate_connection\n"));
 	srv_conn->service->model_ops->terminate_connection(srv_conn, reason);
 }
 



More information about the samba-cvs mailing list