Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 70332 invoked from network); 16 Sep 2010 01:44:31 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Sep 2010 01:44:31 -0000 Received: (qmail 46451 invoked by uid 500); 16 Sep 2010 01:44:31 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 46383 invoked by uid 500); 16 Sep 2010 01:44:30 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 46376 invoked by uid 99); 16 Sep 2010 01:44:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 01:44:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 01:44:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ECFFC23889DA; Thu, 16 Sep 2010 01:44:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r997560 - /httpd/httpd/trunk/include/ap_regex.h Date: Thu, 16 Sep 2010 01:44:09 -0000 To: cvs@httpd.apache.org From: niq@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100916014409.ECFFC23889DA@eris.apache.org> Author: niq Date: Thu Sep 16 01:44:09 2010 New Revision: 997560 URL: http://svn.apache.org/viewvc?rev=997560&view=rev Log: Fix to apidoc comments in ap_regex Modified: httpd/httpd/trunk/include/ap_regex.h Modified: httpd/httpd/trunk/include/ap_regex.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_regex.h?rev=997560&r1=997559&r2=997560&view=diff ============================================================================== --- httpd/httpd/trunk/include/ap_regex.h (original) +++ httpd/httpd/trunk/include/ap_regex.h Thu Sep 16 01:44:09 2010 @@ -100,7 +100,8 @@ typedef struct { * Compile a regular expression. * @param preg Returned compiled regex * @param regex The regular expression string - * @param cflags Must be zero (currently). + * @param cflags Bitwise OR of AP_REG_* flags (ICASE and NEWLINE supported, + * other flags are ignored) * @return Zero on success or non-zero on error */ AP_DECLARE(int) ap_regcomp(ap_regex_t *preg, const char *regex, int cflags); @@ -111,8 +112,9 @@ AP_DECLARE(int) ap_regcomp(ap_regex_t *p * @param string The string to match * @param nmatch Provide information regarding the location of any matches * @param pmatch Provide information regarding the location of any matches - * @param eflags Bitwise OR of any of AP_REG_* flags - * @return 0 for successful match, \p REG_NOMATCH otherwise + * @param eflags Bitwise OR of AP_REG_* flags (NOTBOL and NOTEOL supported, + * other flags are ignored) + * @return 0 for successful match, \p AP_REG_NOMATCH otherwise */ AP_DECLARE(int) ap_regexec(const ap_regex_t *preg, const char *string, apr_size_t nmatch, ap_regmatch_t *pmatch, int eflags);