]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polish: report bytes received when bad content-length detected by quick-abort
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 29 Sep 2013 13:45:05 +0000 (07:45 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 29 Sep 2013 13:45:05 +0000 (07:45 -0600)
src/store_client.cc

index a5db344763b5521477a24227a341328cb8d3a156..d0780bae15640862d31f3fdd8d8ec48a29bc3a88 100644 (file)
@@ -808,7 +808,7 @@ CheckQuickAbortIsReasonable(StoreEntry * entry)
     }
 
     if (curlen > expectlen) {
-        debugs(90, 3, "quick-abort? YES bad content length");
+        debugs(90, 3, "quick-abort? YES bad content length (" << curlen << " of " << expectlen << " bytes received)");
         return true;
     }