From: Christos Tsantilas Date: Mon, 18 Apr 2016 15:28:15 +0000 (+0300) Subject: Handshake Error: ccs received early: fix typo X-Git-Tag: SQUID_3_5_17~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f51b0f6c28376513063d5b310329864238a163fb;p=thirdparty%2Fsquid.git Handshake Error: ccs received early: fix typo --- diff --git a/src/ssl/bio.cc b/src/ssl/bio.cc index f502189a80..bda00e00f8 100644 --- a/src/ssl/bio.cc +++ b/src/ssl/bio.cc @@ -515,7 +515,7 @@ Ssl::ServerBio::resumingSession() return clientFeatures.sessionId == serverFeatures.sessionId; // is this a session resuming attempt using TLS tickets? - if (clientFeatures.hasTlsTicket && receivedHelloFeatures_.hasCcsOrNst) + if (clientFeatures.hasTlsTicket && serverFeatures.hasCcsOrNst) return true; return false;