| Index: third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| index a2ad2a61372b93a547f9ae2bb288405f4043e5d6..73c38d9f67a2111a73e54caa5010b256ea776783 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| @@ -147,8 +147,8 @@ static void checkExistingName(const char* alias, const char* atomicName)
|
| return;
|
| // Keep the warning silent about one case where we know this will happen.
|
| if (strcmp(alias, "ISO-8859-8-I") == 0
|
| - && strcmp(oldAtomicName, "ISO-8859-8-I") == 0
|
| - && strcasecmp(atomicName, "iso-8859-8") == 0)
|
| + && strcmp(oldAtomicName, "ISO-8859-8-I") == 0
|
| + && strcasecmp(atomicName, "iso-8859-8") == 0)
|
| return;
|
| WTF_LOG_ERROR("alias %s maps to %s already, but someone is trying to make it map to %s", alias, oldAtomicName, atomicName);
|
| }
|
|
|