From: Automatic source maintenance Date: Sat, 19 Sep 2009 00:12:39 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_2_0_1~708 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=838daf3f5f794edb9bf12590cf95063c2690e047;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 94fd362802..8ebcf90388 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -3047,12 +3047,12 @@ parse_http_port_option(http_port_list * s, char *token) } else if (strcmp(token, "allow-direct") == 0) { s->allow_direct = 1; } else if (strcmp(token, "ignore-cc") == 0) { - s->ignore_cc = 1; + s->ignore_cc = 1; #if !HTTP_VIOLATIONS - if (!s->accel) { - debugs(3, DBG_CRITICAL, "FATAL: ignore-cc is only valid in accelerator mode"); - self_destruct(); - } + if (!s->accel) { + debugs(3, DBG_CRITICAL, "FATAL: ignore-cc is only valid in accelerator mode"); + self_destruct(); + } #endif } else if (strcmp(token, "no-connection-auth") == 0) { s->connection_auth_disabled = true;