diff options
Diffstat (limited to 'net/base/cookie_monster.cc')
-rw-r--r-- | net/base/cookie_monster.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/cookie_monster.cc b/net/base/cookie_monster.cc index 5b5f572..dbae99a 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; |