From: Rainer Jung Date: Sat, 16 Feb 2013 22:51:16 +0000 (+0000) Subject: Fix compile breakage introduced by backport X-Git-Tag: 2.2.24~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09b3d6737262697f4389aaa58f44f4322382f305;p=thirdparty%2Fapache%2Fhttpd.git Fix compile breakage introduced by backport error in r1445100. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446972 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index ce55f08844c..ecb0947d8e6 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -697,7 +697,7 @@ static apr_status_t dummy_connection(ap_pod_t *pod) return rv; } - if (lp->protocol && strcasecmp(lp->protocol, "https") == 0) { + if (ap_listeners->protocol && strcasecmp(ap_listeners->protocol, "https") == 0) { /* Send a TLS 1.0 close_notify alert. This is perhaps the * "least wrong" way to open and cleanly terminate an SSL * connection. It should "work" without noisy error logs if