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

svn commit: r1609101 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

Author: ylavic
Date: Wed Jul  9 11:11:23 2014
New Revision: 1609101

URL: http://svn.apache.org/r1609101
Log:
Fix C99 (or later only) comment.

Modified:
    httpd/httpd/trunk/modules/proxy/proxy_util.c

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1609101&r1=1609100&r2=1609101&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Wed Jul  9 11:11:23 2014
@@ -3368,7 +3368,7 @@ PROXY_DECLARE(int) ap_proxy_create_hdrbr
 
         /* Add the Expect header if not already there. */
         if (((val = apr_table_get(r->headers_in, "Expect")) == NULL)
-                || (strcasecmp(val, "100-Continue") != 0 // fast path
+                || (strcasecmp(val, "100-Continue") != 0 /* fast path */
                     && !ap_find_token(r->pool, val, "100-Continue"))) {
             apr_table_mergen(r->headers_in, "Expect", "100-Continue");
         }