summaryrefslogtreecommitdiff
path: root/source4/lib/tls/tls.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-08-12 15:19:42 +1000
committerAndrew Tridgell <tridge@samba.org>2009-08-12 15:19:42 +1000
commitc6936ab00f22c87d8ef8590578056446055d37a2 (patch)
tree8f29c99489a7d52e9d92f94f0af7d11cd2f236ce /source4/lib/tls/tls.c
parentad542a630eb2ee265d626b9752f0197281c51990 (diff)
downloadsamba-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/lib/tls/tls.c')
-rw-r--r--source4/lib/tls/tls.c2
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;
}