From: Alex Rousskov Date: Wed, 17 Aug 2016 23:15:03 +0000 (-0600) Subject: Fixed TLS message type logging when SslBump parses TLS handshake. X-Git-Tag: SQUID_4_0_14~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38eba0f70c8b2b8ee00bee4450196cdffaaf8376;p=thirdparty%2Fsquid.git Fixed TLS message type logging when SslBump parses TLS handshake. C++ streams write uint8_t as char. --- diff --git a/src/security/Handshake.cc b/src/security/Handshake.cc index c664f41f48..a546faec06 100644 --- a/src/security/Handshake.cc +++ b/src/security/Handshake.cc @@ -337,7 +337,7 @@ Security::HandshakeParser::parseHandshakeMessage() return; } debugs(83, 5, "ignoring " << message.msg_body.length() << "-byte type-" << - message.msg_type << " handshake message"); + static_cast(message.msg_type) << " handshake message"); } void