From 8b9ade31850fa7b3b5a614f69eab5d0135420707 Mon Sep 17 00:00:00 2001 From: Automatic source maintenance Date: Sat, 16 Mar 2013 18:13:22 -0600 Subject: [PATCH] SourceFormat Enforcement --- src/client_side.cc | 2 +- src/http/StatusCode.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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. -- 2.47.2