Skip to content
Snippets Groups Projects
Commit 2233202d authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

tls: debug line cleanup

Remove annoying information in debug log.

Change-Id: I0f935b2753b9a0e9b168571e1a5ff0e119ffa474
Tuleap: #660
parent 3daacaa4
No related branches found
No related tags found
No related merge requests found
...@@ -640,6 +640,7 @@ TlsSession::handleStateHandshake(TlsSessionState state) ...@@ -640,6 +640,7 @@ TlsSession::handleStateHandshake(TlsSessionState state)
// Continue handshaking on non-fatal error // Continue handshaking on non-fatal error
if (ret != GNUTLS_E_SUCCESS) { if (ret != GNUTLS_E_SUCCESS) {
// TODO: handle GNUTLS_E_LARGE_PACKET (MTU must be lowered) // TODO: handle GNUTLS_E_LARGE_PACKET (MTU must be lowered)
if (ret != GNUTLS_E_AGAIN)
RING_DBG("[TLS] non-fatal handshake error: %s", gnutls_strerror(ret)); RING_DBG("[TLS] non-fatal handshake error: %s", gnutls_strerror(ret));
return state; return state;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment