From: Christos Tsantilas Date: Sat, 10 Dec 2016 16:27:09 +0000 (+0200) Subject: author: Eduard Bagdasaryan X-Git-Tag: M-staged-PR71~341 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d223950c3c2ada7566011f7da86d0ef3e1afe8e7;p=thirdparty%2Fsquid.git author: Eduard Bagdasaryan A typo fix for r14973 revealed by Jenkins. Should use 'ConfigParser::LastTokenWasQuoted()' instead of 'ConfigParser::LastTokenWasQuoted'. --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 0c331b6f4f..7ab12505a8 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1844,7 +1844,7 @@ parse_AuthSchemes(acl_access **authSchemes) self_destruct(); return; } - Config.authSchemesConfigs.push_back(Auth::SchemesConfig(tok, ConfigParser::LastTokenWasQuoted)); + Config.authSchemesConfigs.push_back(Auth::SchemesConfig(tok, ConfigParser::LastTokenWasQuoted())); const allow_t action = allow_t(ACCESS_ALLOWED, Config.authSchemesConfigs.size() - 1); ParseAclWithAction(authSchemes, action, "auth_schemes"); }