From: Joe Orton Date: Thu, 20 Nov 2003 16:13:31 +0000 (+0000) Subject: Propose some backports. X-Git-Tag: 2.0.49~369 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db484d2d34377c764379ac3bd31beb22bb61b0ad;p=thirdparty%2Fapache%2Fhttpd.git Propose some backports. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101814 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index b0cd6b1217b..9693654109c 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 2.0 STATUS: -*-text-*- -Last modified at [$Date: 2003/11/19 12:57:09 $] +Last modified at [$Date: 2003/11/20 16:13:31 $] Release: @@ -70,6 +70,28 @@ PATCHES TO BACKPORT FROM 2.1 [ please place file names and revisions from HEAD here, so it is easy to identify exactly what the proposed changes are! ] + * Don't leave the OpenSSL "id_callback" pointer dangling after + unloading mod_ssl; this fixes segfaults during startup if + other modules (or libraries used by other modules, e.g. PHP + stuff) use OpenSSL. + modules/ssl/ssl_util.c: r1.40 + +1: jorton + + * Fix logging of human-readable error strings in mod_ssl, and use the + thread-safe interface for retrieving them. + modules/ssl/ssl_engine_log.c: r1.23 + modules/ssl/mod_ssl.c: r1.88 + +1: jorton + + * Prevent mod_proxy from sending an invalid status-line to clients + in some cases. + modules/proxy/proxy_http.c: r1.172 + +1: jorton + + * Fix timezone handling in mod_log_config. PR 23642 + modules/loggers/mod_log_config.c: r1.107 + +1: jorton + * parsed_uri.port is only valid iff parsed_uri.port_str != NULL. Old code simply checked if it was non-zero, not if it was *valid*