From: Eric Covener Date: Thu, 13 Oct 2011 17:41:41 +0000 (+0000) Subject: flip operator in comment for r1182887 and add some whitespace X-Git-Tag: 2.3.15~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95457d4698f939a284ebf72c7c762193acaaed47;p=apache flip operator in comment for r1182887 and add some whitespace to highlight the restriction on nmatch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1183007 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index 64d1bebc55..cdeec894bf 100644 --- a/server/util.c +++ b/server/util.c @@ -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.