diff options
Diffstat (limited to 'net/http/http_auth.cc')
-rw-r--r-- | net/http/http_auth.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc index 3525114..7752d74 100644 --- a/net/http/http_auth.cc +++ b/net/http/http_auth.cc @@ -76,7 +76,8 @@ HttpAuth::AuthorizationResult HttpAuth::HandleChallengeResponse( HttpAuth::AUTHORIZATION_RESULT_INVALID; while (headers->EnumerateHeader(&iter, header_name, &challenge)) { HttpAuthChallengeTokenizer props(challenge.begin(), challenge.end()); - if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str())) + if (!base::LowerCaseEqualsASCII(props.scheme(), + current_scheme_name.c_str())) continue; authorization_result = handler->HandleAnotherChallenge(&props); if (authorization_result != HttpAuth::AUTHORIZATION_RESULT_INVALID) { |