From: Christos Tsantilas Date: Wed, 25 Apr 2012 21:08:51 +0000 (+0300) Subject: SSL and ssl_crtd was broken after latest changes X-Git-Tag: BumpSslServerFirst.take08~7^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18f37f42b7069824c739a9f0966be0db8a9c2700;p=thirdparty%2Fsquid.git SSL and ssl_crtd was broken after latest changes The http_port_list struct renamed to AnyP::PortCfg --- diff --git a/src/ssl/helper.cc b/src/ssl/helper.cc index 8f4f2f0ced..0e25854d8e 100644 --- a/src/ssl/helper.cc +++ b/src/ssl/helper.cc @@ -3,7 +3,7 @@ */ #include "squid.h" -#include "ProtoPort.h" +#include "anyp/PortCfg.h" #include "ssl/Config.h" #include "ssl/helper.h" #include "SquidTime.h" @@ -29,7 +29,7 @@ void Ssl::Helper::Init() assert(ssl_crtd == NULL); bool useSslBump = false; - for (http_port_list *s = ::Config.Sockaddr.http; s; s = s->next) { + for (AnyP::PortCfg *s = ::Config.Sockaddr.http; s; s = s->next) { if (s->sslBump) { useSslBump = true; break;