]> granicus.if.org Git - apache/commitdiff
Fix C99 (or later only) comment.
authorYann Ylavic <ylavic@apache.org>
Wed, 9 Jul 2014 11:11:23 +0000 (11:11 +0000)
committerYann Ylavic <ylavic@apache.org>
Wed, 9 Jul 2014 11:11:23 +0000 (11:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1609101 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_util.c

index 2e34bfa7f96f6fd37ac8e174c9ea3b3ce9c500d3..4d91a21c0e3aea9a18b82e7f5d65f379d1da69bc 100644 (file)
@@ -3368,7 +3368,7 @@ PROXY_DECLARE(int) ap_proxy_create_hdrbrgd(apr_pool_t *p,
 
         /* 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");
         }