mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-04 13:07:52 +00:00
r=jshin, sr=mkaply (OS/2 only) From Peter Weilbacher - use stricmp to silence assertion
This commit is contained in:
parent
bf22bc06cf
commit
bc8ae3bdfd
@ -265,7 +265,7 @@ nsOS2Locale::ParseLocaleString(const char* locale_string, char* language, char*
|
||||
//
|
||||
if ((*src == '@') || (*src == separator)) {
|
||||
src++; // move past the modifier separator
|
||||
NS_ASSERTION(strcmp("euro",src) == 0, "found non euro modifier");
|
||||
NS_ASSERTION(stricmp("euro",src) == 0, "found non euro modifier");
|
||||
dest = modifier;
|
||||
dest_space = MAX_EXTRA_LEN;
|
||||
while ((*src) && (dest_space--)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user