From: Nikos Mavrogiannopoulos Date: Sat, 17 Mar 2012 19:58:21 +0000 (+0100) Subject: changed debugging level for message X-Git-Tag: gnutls_3_0_18~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33162437d298621b441ab074e295762f833fe859;p=thirdparty%2Fgnutls.git changed debugging level for message --- diff --git a/lib/gnutls_handshake.c b/lib/gnutls_handshake.c index ee6c8763ad..f0ceb7bf9f 100644 --- a/lib/gnutls_handshake.c +++ b/lib/gnutls_handshake.c @@ -1383,7 +1383,8 @@ _gnutls_client_set_ciphersuite (gnutls_session_t session, uint8_t suite[2]) if (z != 0) { gnutls_assert (); - _gnutls_debug_log("unsupported cipher suite %.2X.%.2X\n", (unsigned int)suite[0], (unsigned int)suite[1]); + _gnutls_handshake_log("HSK[%p]: unsupported cipher suite %.2X.%.2X\n", session, + (unsigned int)suite[0], (unsigned int)suite[1]); return GNUTLS_E_UNKNOWN_CIPHER_SUITE; }