From: Source Maintenance Date: Tue, 12 Apr 2016 18:12:15 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_4_0_9~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c4e522641398f4a350000df6221d1d355a0674c;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/http/one/Parser.cc b/src/http/one/Parser.cc index 2b9b63e6ac..e762957af0 100644 --- a/src/http/one/Parser.cc +++ b/src/http/one/Parser.cc @@ -149,3 +149,4 @@ Http::One::Parser::violationLevel() const return Config.onoff.relaxed_header_parser < 0 ? DBG_IMPORTANT : 5; } #endif + diff --git a/src/http/one/TeChunkedParser.cc b/src/http/one/TeChunkedParser.cc index 28a03db5f7..682432ef67 100644 --- a/src/http/one/TeChunkedParser.cc +++ b/src/http/one/TeChunkedParser.cc @@ -93,7 +93,7 @@ Http::One::TeChunkedParser::parseChunkSize(Http1::Tokenizer &tok) debugs(94,7, "found chunk: " << theChunkSize); #if USE_HTTP_VIOLATIONS - // Bug 4492: IBM_HTTP_Server pads out to 4 bytes with SP characters + // Bug 4492: IBM_HTTP_Server pads out to 4 bytes with SP characters if (Config.onoff.relaxed_header_parser && tok.skipAll(CharacterSet::SP)) { debugs(94, violationLevel(), "WARNING: skipped invalid whitespace in chunk size"); }