]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 6 Oct 2009 00:12:45 +0000 (18:12 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 6 Oct 2009 00:12:45 +0000 (18:12 -0600)
src/Server.cc
src/http.cc

index 0f132656a70c419b460fb064cf3036d13fde13d8..5f00e522952a3a384f55ef15ef012073a7755248 100644 (file)
@@ -833,7 +833,7 @@ ServerStateData::storeReplyBody(const char *data, ssize_t len)
 }
 
 size_t ServerStateData::replyBodySpace(const MemBuf &readBuf,
-    const size_t minSpace) const
+                                       const size_t minSpace) const
 {
     size_t space = readBuf.spaceSize(); // available space w/o heroic measures
     if (space < minSpace) {
index 08b2941cd1f19d0c60be520f7bc186b35d3c6b42..209968217c34ab167c0fce355dfbedc5f9a863ce 100644 (file)
@@ -1351,7 +1351,7 @@ void
 HttpStateData::maybeReadVirginBody()
 {
     // we may need to grow the buffer if headers do not fit
-    const int minRead = flags.headers_parsed ? 0 : 1024;
+    const int minRead = flags.headers_parsed ? 0 :1024;
     const int read_sz = replyBodySpace(*readBuf, minRead);
 
     debugs(11,9, HERE << (flags.do_next_read ? "may" : "wont") <<