From: William A. Rowe Jr Date: Sat, 16 Mar 2002 17:55:07 +0000 (+0000) Subject: Silly module, we don't need compat.h :) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa5bd05583f3354de69319a01925f45e72fe5222;p=thirdparty%2Fapache%2Fhttpd.git Silly module, we don't need compat.h :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@93964 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_ext.c b/ssl_engine_ext.c index 9f1448cb3ce..c0b17dca727 100644 --- a/ssl_engine_ext.c +++ b/ssl_engine_ext.c @@ -136,9 +136,9 @@ static void ssl_ext_mp_init(server_rec *s, pool *p) cpVHostID); ssl_die(); } - cp = ap_pstrcat(p, (sc->nProxyProtocol & SSL_PROTOCOL_SSLV2 ? "SSLv2, " : ""), - (sc->nProxyProtocol & SSL_PROTOCOL_SSLV3 ? "SSLv3, " : ""), - (sc->nProxyProtocol & SSL_PROTOCOL_TLSV1 ? "TLSv1, " : ""), NULL); + cp = apr_pstrcat(p, (sc->nProxyProtocol & SSL_PROTOCOL_SSLV2 ? "SSLv2, " : ""), + (sc->nProxyProtocol & SSL_PROTOCOL_SSLV3 ? "SSLv3, " : ""), + (sc->nProxyProtocol & SSL_PROTOCOL_TLSV1 ? "TLSv1, " : ""), NULL); cp[strlen(cp)-2] = NUL; ssl_log(s, SSL_LOG_TRACE, "Init: (%s) Creating new proxy SSL context (protocols: %s)",