Index: net/base/cookie_monster.cc |
diff --git a/net/base/cookie_monster.cc b/net/base/cookie_monster.cc |
index 5b5f57231eb8e07fe674646e6e281620285ad642..dbae99adafb294eceb751578e053fe3f423218cf 100644 |
--- a/net/base/cookie_monster.cc |
+++ b/net/base/cookie_monster.cc |
@@ -173,7 +173,7 @@ Time CookieMonster::ParseCookieTime(const std::string& time_string) { |
if (!found_month) { |
for (int i = 0; i < kMonthsLen; ++i) { |
// Match prefix, so we could match January, etc |
- if (StrNCaseCmp(token.c_str(), kMonths[i], 3) == 0) { |
+ if (base::strncasecmp(token.c_str(), kMonths[i], 3) == 0) { |
exploded.month = i + 1; |
found_month = true; |
break; |