diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-08-12 15:19:42 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-08-12 15:19:42 +1000 |
commit | c6936ab00f22c87d8ef8590578056446055d37a2 (patch) | |
tree | 8f29c99489a7d52e9d92f94f0af7d11cd2f236ce /source4 | |
parent | ad542a630eb2ee265d626b9752f0197281c51990 (diff) | |
download | samba-c6936ab00f22c87d8ef8590578056446055d37a2.tar.gz samba-c6936ab00f22c87d8ef8590578056446055d37a2.tar.bz2 samba-c6936ab00f22c87d8ef8590578056446055d37a2.zip |
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
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/tls/tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tls/tls.c b/source4/lib/tls/tls.c index d4e8680a6b..ba2e9e431b 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; } |