bug 102515: fix assertion from previous patch

checkin for mailto:andreas.otte@debitel.net,
r=bstell@netscape.com, sr=blizzard@mozilla.org
This commit is contained in:
bstell%netscape.com 2001-11-14 22:40:47 +00:00
parent 46a19168bb
commit 228e9414f1

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--)) {