diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-22 03:49:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:19:12 -0500 |
commit | 660964f133d8e0a3a702f2f8dd1826910099c96b (patch) | |
tree | 112f81464ff9e60be96e71345f66ebbb080abe73 /source4 | |
parent | ead672ea099cff71b3d5ab7bbb7c52a4f2fb1a6c (diff) | |
download | samba-660964f133d8e0a3a702f2f8dd1826910099c96b.tar.gz samba-660964f133d8e0a3a702f2f8dd1826910099c96b.tar.bz2 samba-660964f133d8e0a3a702f2f8dd1826910099c96b.zip |
r18805: make error message match function name
(This used to be commit e46d8ed53f8eb4ba596ab6fc1924eb7f1829a3df)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/smbd/process_single.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |