]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Thu, 13 Aug 2015 00:12:11 +0000 (00:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Thu, 13 Aug 2015 00:12:11 +0000 (00:12 +0000)
src/parser/Tokenizer.cc

index 825aecc7a87e966609db578142fce4fbeb505818..a4e1bf5e78e00fd64dddf2c6fa66d8fa5f9e66a3 100644 (file)
@@ -194,7 +194,7 @@ Parser::Tokenizer::skipAllTrailing(const CharacterSet &skippable)
 {
     const SBuf::size_type prefixEnd = buf_.findLastNotOf(skippable);
     const SBuf::size_type prefixLen = prefixEnd == SBuf::npos ?
-        0 : (prefixEnd + 1);
+                                      0 : (prefixEnd + 1);
     const SBuf::size_type suffixLen = buf_.length() - prefixLen;
     if (suffixLen == 0) {
         debugs(24, 8, "no match when trying to skip " << skippable.name);