1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:smbd increase a loglevel

do not complain too loudly if the socket has already gone

Signed-off-by: Christian Ambach <ambi@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Christian Ambach 2013-04-08 18:09:05 +02:00 committed by Volker Lendecke
parent de1c833b3a
commit 58275be0eb

View File

@ -3577,11 +3577,11 @@ void smbd_process(struct tevent_context *ev_ctx,
DEBUG(0, ("ctdbd_register_ips failed: %s\n",
nt_errstr(status)));
}
} else
{
DEBUG(0,("Unable to get tcp info for "
"CTDB_CONTROL_TCP_CLIENT: %s\n",
strerror(errno)));
} else {
int level = (errno == ENOTCONN)?2:0;
DEBUG(level,("Unable to get tcp info for "
"smbd_register_ips: %s\n",
strerror(errno)));
}
}