From 660964f133d8e0a3a702f2f8dd1826910099c96b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 22 Sep 2006 03:49:24 +0000 Subject: r18805: make error message match function name (This used to be commit e46d8ed53f8eb4ba596ab6fc1924eb7f1829a3df) --- source4/smbd/process_single.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/smbd/process_single.c') diff --git a/source4/smbd/process_single.c b/source4/smbd/process_single.c index 86f6a38cd1..b8708f9ebe 100644 --- a/source4/smbd/process_single.c +++ b/source4/smbd/process_single.c @@ -54,7 +54,7 @@ static void single_accept_connection(struct event_context *ev, /* accept an incoming connection. */ status = socket_accept(sock, &sock2); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0,("accept_connection_single: accept: %s\n", nt_errstr(status))); + DEBUG(0,("single_accept_connection: accept: %s\n", nt_errstr(status))); /* this looks strange, but is correct. We need to throttle things until the system clears enough resources to handle this new socket. If we don't -- cgit