]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 17 Mar 2013 00:13:22 +0000 (18:13 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 17 Mar 2013 00:13:22 +0000 (18:13 -0600)
src/client_side.cc
src/http/StatusCode.h

index a6c52c9b06b75045d93c0c34f6e49b3cbf177fb7..7124461d9758a70adcc12ba7403a39149c1b1307 100644 (file)
@@ -3169,7 +3169,7 @@ ConnStateData::abortChunkedRequestBody(const err_type error)
         clientReplyContext *repContext = dynamic_cast<clientReplyContext*>(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,
index b44bfe58a77df2566dd9154292f294e7fb54a2df..d95b0092dadff570efa2f2e458d9286c04e9e0dc 100644 (file)
@@ -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.