bug 102515: fix assertion from previous patch

checkin for mailto:andreas.otte@debitel.net,
r=bstell@netscape.com, sr=blizzard@mozilla.org


git-svn-id: svn://10.0.0.236/trunk@108094 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bstell%netscape.com
2001-11-14 22:40:47 +00:00
parent 891f71eee4
commit dbb5792627

View File

@@ -244,7 +244,7 @@ nsPosixLocale::ParseLocaleString(const char* locale_string, char* language, char
if (*src == '@') {
src++; // move past the modifier separator
NS_ASSERTION(strcmp("euro",src) != 0, "found non euro modifier");
NS_ASSERTION(strcmp("euro",src) == 0, "found non euro modifier");
dest = modifier;
dest_space = MAX_EXTRA_LEN;
while ((*src) && (dest_space--)) {