You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2011/10/13 19:41:41 UTC

svn commit: r1183007 - /httpd/httpd/trunk/server/util.c

Author: covener
Date: Thu Oct 13 17:41:41 2011
New Revision: 1183007

URL: http://svn.apache.org/viewvc?rev=1183007&view=rev
Log:
flip operator in comment for r1182887 and add some whitespace
to highlight the restriction on nmatch.

Modified:
    httpd/httpd/trunk/server/util.c

Modified: httpd/httpd/trunk/server/util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1183007&r1=1183006&r2=1183007&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util.c (original)
+++ httpd/httpd/trunk/server/util.c Thu Oct 13 17:41:41 2011
@@ -357,7 +357,8 @@ AP_DECLARE(const char *) ap_stripprefix(
  * submatches. Pass it the same nmatch and pmatch arguments that you
  * passed ap_regexec(). pmatch should not be greater than the maximum number
  * of subexpressions - i.e. one more than the re_nsub member of ap_regex_t.
- * nmatch must be >=AP_MAX_REG_MATCH (10).
+ *
+ * nmatch must be <=AP_MAX_REG_MATCH (10).
  *
  * input should be the string with the $-expressions, source should be the
  * string that was matched against.