ICU-1220 case-insensitive compare of callabck names.

X-SVN-Rev: 8087
This commit is contained in:
Yves Arrouye 2002-03-18 17:12:52 +00:00
parent bf0cab12ce
commit 564f1a1904

View File

@ -149,7 +149,7 @@ static const struct callback_ent *findCallback(const char *name) {
may not be that portable. */
for (i = 0; i < count; ++i) {
if (!strcmp(name, transcode_callbacks[i].name)) {
if (!uprv_stricmp(name, transcode_callbacks[i].name)) {
return &transcode_callbacks[i];
}
}