From: Amos Jeffries Date: Thu, 19 May 2016 13:14:46 +0000 (+1200) Subject: Fix typo in rev.14670 X-Git-Tag: SQUID_4_0_11~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3152460df6eca074d7d67b8f64b9c36a215b8910;p=thirdparty%2Fsquid.git Fix typo in rev.14670 --- diff --git a/src/ssl/bio.cc b/src/ssl/bio.cc index dca2b430ca..fb68f86471 100644 --- a/src/ssl/bio.cc +++ b/src/ssl/bio.cc @@ -668,7 +668,7 @@ applyTlsDetailsToSSL(SSL *ssl, Security::TlsDetails::Pointer const &details, Ssl #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) if (!details->tlsAppLayerProtoNeg.isEmpty()) { if (bumpMode == Ssl::bumpPeek) - SSL_set_alpn_protos(ssl, (const unsigned char*)details->tlsAppLayerProtoNeg.rawContent(), tlsAppLayerProtoNeg.length()); + SSL_set_alpn_protos(ssl, (const unsigned char*)details->tlsAppLayerProtoNeg.rawContent(), details->tlsAppLayerProtoNeg.length()); else { static const unsigned char supported_protos[] = {8, 'h','t','t', 'p', '/', '1', '.', '1'}; SSL_set_alpn_protos(ssl, supported_protos, sizeof(supported_protos));