You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/03/16 18:55:07 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_ext.c

wrowe       02/03/16 09:55:07

  Modified:    modules/ssl ssl_engine_ext.c
  Log:
    Silly module, we don't need compat.h :)
  
  Revision  Changes    Path
  1.12      +3 -3      httpd-2.0/modules/ssl/ssl_engine_ext.c
  
  Index: ssl_engine_ext.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_ext.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ssl_engine_ext.c	13 Mar 2002 20:47:54 -0000	1.11
  +++ ssl_engine_ext.c	16 Mar 2002 17:55:07 -0000	1.12
  @@ -136,9 +136,9 @@
                       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)",