You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2010/09/21 22:31:31 UTC

svn commit: r999607 - in /httpd/httpd/trunk: include/ap_mmn.h server/util_regex.c

Author: niq
Date: Tue Sep 21 20:31:31 2010
New Revision: 999607

URL: http://svn.apache.org/viewvc?rev=999607&view=rev
Log:
Minor MMN bump for ap_rxplus API

Modified:
    httpd/httpd/trunk/include/ap_mmn.h
    httpd/httpd/trunk/server/util_regex.c

Modified: httpd/httpd/trunk/include/ap_mmn.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_mmn.h?rev=999607&r1=999606&r2=999607&view=diff
==============================================================================
--- httpd/httpd/trunk/include/ap_mmn.h (original)
+++ httpd/httpd/trunk/include/ap_mmn.h Tue Sep 21 20:31:31 2010
@@ -258,6 +258,7 @@
  * 20100919.0 (2.3.9-dev)  Authz providers: Add parsed_require_line parameter
  *                         to check_authorization() function. Add
  *                         parse_require_line() function.
+ * 20100919.1 (2.3.9-dev)  Introduce ap_rxplus util/API
  */
 
 #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */
@@ -265,7 +266,7 @@
 #ifndef MODULE_MAGIC_NUMBER_MAJOR
 #define MODULE_MAGIC_NUMBER_MAJOR 20100919
 #endif
-#define MODULE_MAGIC_NUMBER_MINOR 0                     /* 0...n */
+#define MODULE_MAGIC_NUMBER_MINOR 1                     /* 0...n */
 
 /**
  * Determine if the server's current MODULE_MAGIC_NUMBER is at least a

Modified: httpd/httpd/trunk/server/util_regex.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util_regex.c?rev=999607&r1=999606&r2=999607&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util_regex.c (original)
+++ httpd/httpd/trunk/server/util_regex.c Tue Sep 21 20:31:31 2010
@@ -132,7 +132,6 @@ AP_DECLARE(ap_rxplus_t*) ap_rxplus_compi
 
 AP_DECLARE(int) ap_rxplus_exec(apr_pool_t *pool, ap_rxplus_t *rx,
                                const char *pattern, char **newpattern)
-                               //int max_iterations)
 {
     int ret = 1;
     int startl, oldl, newl, diffsz;