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:07:22 UTC

svn commit: r1609100 - /httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c

Author: ylavic
Date: Wed Jul  9 11:07:21 2014
New Revision: 1609100

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

Modified:
    httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c

Modified: httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c?rev=1609100&r1=1609099&r2=1609100&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c Wed Jul  9 11:07:21 2014
@@ -3319,7 +3319,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");
         }