From: Automatic source maintenance Date: Sun, 17 Mar 2013 00:13:22 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_4_0_1~236 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b9ade31850fa7b3b5a614f69eab5d0135420707;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/client_side.cc b/src/client_side.cc index a6c52c9b06..7124461d97 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -3169,7 +3169,7 @@ ConnStateData::abortChunkedRequestBody(const err_type error) clientReplyContext *repContext = dynamic_cast(node->data.getRaw()); assert(repContext); const Http::StatusCode scode = (error == ERR_TOO_BIG) ? - Http::scRequestEntityTooLarge : HTTP_BAD_REQUEST; + Http::scRequestEntityTooLarge : HTTP_BAD_REQUEST; repContext->setReplyToError(error, scode, repContext->http->request->method, repContext->http->uri, diff --git a/src/http/StatusCode.h b/src/http/StatusCode.h index b44bfe58a7..d95b0092da 100644 --- a/src/http/StatusCode.h +++ b/src/http/StatusCode.h @@ -1,7 +1,8 @@ #ifndef _SQUID_SRC_HTTP_STATUSCODE_H #define _SQUID_SRC_HTTP_STATUSCODE_H -namespace Http { +namespace Http +{ /** * These basic HTTP reply status codes are defined by RFC 2616 unless otherwise stated.