From 0e51a9206dd0907322681697dcdfd18490ea4eed Mon Sep 17 00:00:00 2001 From: Automatic source maintenance Date: Tue, 17 Aug 2010 20:24:34 -0600 Subject: [PATCH] SourceFormat Enforcement --- src/HttpHeaderTools.cc | 8 ++++---- src/cache_cf.cc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/HttpHeaderTools.cc b/src/HttpHeaderTools.cc index 5227902b0d..09e7b90347 100644 --- a/src/HttpHeaderTools.cc +++ b/src/HttpHeaderTools.cc @@ -153,10 +153,10 @@ httpHeaderHasConnDir(const HttpHeader * hdr, const char *directive) list = hdr->getList(HDR_PROXY_CONNECTION); else #endif - if (hdr->has(HDR_CONNECTION)) - list = hdr->getList(HDR_CONNECTION); - else - return 0; + if (hdr->has(HDR_CONNECTION)) + list = hdr->getList(HDR_CONNECTION); + else + return 0; res = strListIsMember(&list, directive, ','); diff --git a/src/cache_cf.cc b/src/cache_cf.cc index caf3aa23d5..203d621abd 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -3158,7 +3158,7 @@ parse_http_port_option(http_port_list * s, char *token) s->sslcontext = xstrdup(token + 11); } else if (strcasecmp(token, "sslBump") == 0) { debugs(3, DBG_CRITICAL, "WARNING: '" << token << "' is deprecated " << - "in http_port. Use 'ssl-bump' instead."); + "in http_port. Use 'ssl-bump' instead."); s->sslBump = 1; // accelerated when bumped, otherwise not } else if (strcmp(token, "ssl-bump") == 0) { s->sslBump = 1; // accelerated when bumped, otherwise not -- 2.47.3