From: Diogenes S. Jesus Date: Wed, 24 Aug 2016 13:31:24 +0000 (+1200) Subject: Fix logformat unable to configure codes with /-escape X-Git-Tag: SQUID_4_0_14~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71eb082c2aea61d8490b521da9c70a9e1ecc2165;p=thirdparty%2Fsquid.git Fix logformat unable to configure codes with /-escape --- diff --git a/src/format/Token.cc b/src/format/Token.cc index f7b1b53d2d..a06c6ac3f4 100644 --- a/src/format/Token.cc +++ b/src/format/Token.cc @@ -343,6 +343,11 @@ Format::Token::parse(const char *def, Quoting *quoting) ++cur; break; + case '/': + quote = LOG_QUOTE_SHELL; + ++cur; + break; + default: quote = *quoting; break;