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

modules/proxy/proxy_util.c

index bdff652fe5834e39d767c06456c11eeba2e3df73..d8ca5a74382db09d7233111207148d5d80cc32bb 100644 (file)
@@ -3319,7 +3319,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");
         }