You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jf...@apache.org on 2005/10/18 11:24:07 UTC

svn commit: r326058 - /httpd/httpd/trunk/modules/metadata/mod_setenvif.c

Author: jfclere
Date: Tue Oct 18 02:24:02 2005
New Revision: 326058

URL: http://svn.apache.org/viewcvs?rev=326058&view=rev
Log:
C++ comments are not supported by some  compilers (ReliantUnix).

Modified:
    httpd/httpd/trunk/modules/metadata/mod_setenvif.c

Modified: httpd/httpd/trunk/modules/metadata/mod_setenvif.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/metadata/mod_setenvif.c?rev=326058&r1=326057&r2=326058&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/metadata/mod_setenvif.c (original)
+++ httpd/httpd/trunk/modules/metadata/mod_setenvif.c Tue Oct 18 02:24:02 2005
@@ -357,7 +357,7 @@
             /* Syntax check and extraction of the OID as a regex: */
             new->pnamereg = ap_pregcomp(cmd->pool,
                                         "^oid\\(\"?([0-9.]+)\"?\\)$",
-                                        (AP_REG_EXTENDED // | AP_REG_NOSUB
+                                        (AP_REG_EXTENDED /* | AP_REG_NOSUB */
                                          | AP_REG_ICASE));
             /* this can never happen, as long as pcre works:
               if (new->pnamereg == NULL)



Re: svn commit: r326058 - /httpd/httpd/trunk/modules/metadata/mod_setenvif.c

Posted by Jeff Trawick <tr...@gmail.com>.
On 10/18/05, jfclere@apache.org <jf...@apache.org> wrote:
> Author: jfclere
> Date: Tue Oct 18 02:24:02 2005
> New Revision: 326058
>
> URL: http://svn.apache.org/viewcvs?rev=326058&view=rev
> Log:
> C++ comments are not supported by some  compilers (ReliantUnix).

or native compilers for AIX, z/OS, HP-UX, ...