You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2012/02/01 13:17:45 UTC

svn commit: r1239101 - /httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c

Author: rjung
Date: Wed Feb  1 12:17:45 2012
New Revision: 1239101

URL: http://svn.apache.org/viewvc?rev=1239101&view=rev
Log:
Hopefully the last breakage due to trunk
MODULE_MAGIC_COOKIE update.

Modified:
    httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c

Modified: httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c?rev=1239101&r1=1239100&r2=1239101&view=diff
==============================================================================
--- httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c (original)
+++ httpd/test/framework/trunk/c-modules/test_ssl/mod_test_ssl.c Wed Feb  1 12:17:45 2012
@@ -29,8 +29,9 @@
 
 #include "mod_ssl.h"
 
-#if MODULE_MAGIC_COOKIE == 0x41503234UL \
-    && AP_MODULE_MAGIC_AT_LEAST(20050919, 0) /* ssl_ext_list() only in 2.4.x */
+#if MODULE_MAGIC_COOKIE > 0x41503234UL || \
+    (MODULE_MAGIC_COOKIE == 0x41503234UL \
+    && AP_MODULE_MAGIC_AT_LEAST(20050919, 0)) /* ssl_ext_list() only in 2.4.x */
 #define HAVE_SSL_EXT_LIST
 static APR_OPTIONAL_FN_TYPE(ssl_ext_list) *ext_list;
 #elif AP_MODULE_MAGIC_AT_LEAST(20050127, 0) /* approx. when ssl_ext_lookup was added */