]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 8 Feb 2011 05:29:45 +0000 (22:29 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 8 Feb 2011 05:29:45 +0000 (22:29 -0700)
src/adaptation/ecap/MessageRep.cc

index f7ebd4b6ff5f6a2e7362d5cfd8188b709ca0ea02..8acf3798ed88b446e080f8295b718e2bd3664825 100644 (file)
@@ -50,7 +50,7 @@ Adaptation::Ecap::HeaderRep::add(const Name &name, const Value &value)
     theHeader.addEntry(e);
 
     if (squidId == HDR_CONTENT_LENGTH)
-           theMessage.content_length = theHeader.getInt64(HDR_CONTENT_LENGTH);
+        theMessage.content_length = theHeader.getInt64(HDR_CONTENT_LENGTH);
 }
 
 void
@@ -63,7 +63,7 @@ Adaptation::Ecap::HeaderRep::removeAny(const Name &name)
         theHeader.delById(squidId);
 
     if (squidId == HDR_CONTENT_LENGTH)
-           theMessage.content_length = theHeader.getInt64(HDR_CONTENT_LENGTH);
+        theMessage.content_length = theHeader.getInt64(HDR_CONTENT_LENGTH);
 }
 
 libecap::Area