]> granicus.if.org Git - apache/commitdiff
flip operator in comment for r1182887 and add some whitespace
authorEric Covener <covener@apache.org>
Thu, 13 Oct 2011 17:41:41 +0000 (17:41 +0000)
committerEric Covener <covener@apache.org>
Thu, 13 Oct 2011 17:41:41 +0000 (17:41 +0000)
to highlight the restriction on nmatch.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1183007 13f79535-47bb-0310-9956-ffa450edef68

server/util.c

index 64d1bebc55746b216b6b1e30b39a8da4e4663e66..cdeec894bf53446560556977992f360af5f35a1f 100644 (file)
@@ -357,7 +357,8 @@ AP_DECLARE(const char *) ap_stripprefix(const char *bigstring,
  * 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.