From: Andrew Tridgell Date: Wed, 12 Aug 2009 05:19:42 +0000 (+1000) Subject: raise the debug level for a common message X-Git-Tag: talloc-2.0.0~424 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6936ab00f22c87d8ef8590578056446055d37a2;p=thirdparty%2Fsamba.git raise the debug level for a common message when a client disconnects we expect this to happen, so don't print an error each time --- diff --git a/source4/lib/tls/tls.c b/source4/lib/tls/tls.c index d4e8680a6bf..ba2e9e431b3 100644 --- a/source4/lib/tls/tls.c +++ b/source4/lib/tls/tls.c @@ -185,7 +185,7 @@ static int tls_destructor(struct tls_context *tls) int ret; ret = gnutls_bye(tls->session, GNUTLS_SHUT_WR); if (ret < 0) { - DEBUG(0,("TLS gnutls_bye failed - %s\n", gnutls_strerror(ret))); + DEBUG(4,("TLS gnutls_bye failed - %s\n", gnutls_strerror(ret))); } return 0; }