| Index: trunk/src/net/http/http_auth_sspi_win.cc
|
| ===================================================================
|
| --- trunk/src/net/http/http_auth_sspi_win.cc (revision 289319)
|
| +++ trunk/src/net/http/http_auth_sspi_win.cc (working copy)
|
| @@ -229,8 +229,8 @@
|
| HttpAuth::AuthorizationResult HttpAuthSSPI::ParseChallenge(
|
| HttpAuthChallengeTokenizer* tok) {
|
| // Verify the challenge's auth-scheme.
|
| - if (!base::LowerCaseEqualsASCII(tok->scheme(),
|
| - base::StringToLowerASCII(scheme_).c_str()))
|
| + if (!LowerCaseEqualsASCII(tok->scheme(),
|
| + base::StringToLowerASCII(scheme_).c_str()))
|
| return HttpAuth::AUTHORIZATION_RESULT_INVALID;
|
|
|
| std::string encoded_auth_token = tok->base64_param();
|
|
|