From: Automatic source maintenance Date: Tue, 8 Feb 2011 05:29:45 +0000 (-0700) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_1_12~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2752e5ed2ed94eef248d6b926e69c0951c1c0888;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/adaptation/ecap/MessageRep.cc b/src/adaptation/ecap/MessageRep.cc index f7ebd4b6ff..8acf3798ed 100644 --- a/src/adaptation/ecap/MessageRep.cc +++ b/src/adaptation/ecap/MessageRep.cc @@ -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