1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-28 17:47:29 +03:00

r2588: connect/disconnect is common enough that I don't think a level 0 DEBUG

is warranted to warn that it has happened :)
This commit is contained in:
Andrew Tridgell 2004-09-24 06:52:19 +00:00 committed by Gerald (Jerry) Carter
parent 5b967c1cbb
commit ee51eefe17
3 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ static void single_accept_connection(struct event_context *ev, struct fd_event *
/* 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) {

View File

@ -89,7 +89,7 @@ static void standard_accept_connection(struct event_context *ev, struct fd_event
/* 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) {

View File

@ -239,7 +239,7 @@ struct server_connection *server_setup_connection(struct event_context *ev, stru
*/
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);
}