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

metze at samba.org metze at samba.org
Tue Sep 28 12:30:42 GMT 2004


Author: metze
Date: 2004-09-28 12:30:42 +0000 (Tue, 28 Sep 2004)
New Revision: 2723

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

Log:
fix some debug messages

metze

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


Changeset:
Modified: branches/SAMBA_4_0/source/smbd/process_standard.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/process_standard.c	2004-09-28 12:17:03 UTC (rev 2722)
+++ branches/SAMBA_4_0/source/smbd/process_standard.c	2004-09-28 12:30:42 UTC (rev 2723)
@@ -45,7 +45,7 @@
 	/* accept an incoming connection. */
 	status = socket_accept(server_socket->socket, &sock, 0);
 	if (!NT_STATUS_IS_OK(status)) {
-		DEBUG(0,("accept_connection_single: accept: %s\n",
+		DEBUG(0,("standard_accept_connection: accept: %s\n",
 			 nt_errstr(status)));
 		return;
 	}
@@ -91,7 +91,7 @@
 /* called when a SMB connection goes down */
 static void standard_terminate_connection(struct server_connection *conn, const char *reason) 
 {
-	DEBUG(2,("single_terminate_connection: reason[%s]\n",reason));
+	DEBUG(2,("standard_terminate_connection: reason[%s]\n",reason));
 
 	if (conn) {
 		talloc_free(conn->service->srv_ctx);



More information about the samba-cvs mailing list