From 27df444d0b92a8acb4d830b3b62f04835b57f0e8 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 11 May 2013 09:47:23 -0700 Subject: Make sure that if an smbd is exiting because of an error we let the user know. Signed-off-by: Richard Sharpe --- source3/smbd/smb2_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index b031c6d153..73df368828 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -997,7 +997,7 @@ void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn, const char *reason, const char *location) { - DEBUG(10,("smbd_server_connection_terminate_ex: reason[%s] at %s\n", + DEBUG(0,("smbd_server_connection_terminate_ex: reason[%s] at %s\n", reason, location)); exit_server_cleanly(reason); } -- cgit