Index: trunk/src/net/http/http_auth_gssapi_posix.cc |
=================================================================== |
--- trunk/src/net/http/http_auth_gssapi_posix.cc (revision 289319) |
+++ trunk/src/net/http/http_auth_gssapi_posix.cc (working copy) |
@@ -687,8 +687,8 @@ |
HttpAuth::AuthorizationResult HttpAuthGSSAPI::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(); |