From: Yann Ylavic Date: Wed, 9 Jul 2014 11:11:23 +0000 (+0000) Subject: Fix C99 (or later only) comment. X-Git-Tag: 2.5.0-alpha~3990 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f08f4008a8d58087f2152e1770e1f4958d7cd5c;p=apache Fix C99 (or later only) comment. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1609101 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 2e34bfa7f9..4d91a21c0e 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -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"); }