From 564f1a19043dc5e0557ee6b7c4a6317acd2b75d9 Mon Sep 17 00:00:00 2001 From: Yves Arrouye Date: Mon, 18 Mar 2002 17:12:52 +0000 Subject: [PATCH] ICU-1220 case-insensitive compare of callabck names. X-SVN-Rev: 8087 --- icu4c/source/extra/uconv/uconv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/extra/uconv/uconv.cpp b/icu4c/source/extra/uconv/uconv.cpp index 5f16829df7..e36fbc3d25 100644 --- a/icu4c/source/extra/uconv/uconv.cpp +++ b/icu4c/source/extra/uconv/uconv.cpp @@ -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]; } }