ICU-705 compare converter names case-insensitively

X-SVN-Rev: 3356
This commit is contained in:
Markus Scherer 2001-01-02 23:13:54 +00:00
parent 1446e3f548
commit e8b1370dd1

View file

@ -40,7 +40,7 @@ static int dotestname(const char *name, const char *standard, const char *expect
if (!tag) {
log_err("FAIL: could not find %s standard name for %s\n", standard, name);
res = 0;
} else if (expected && uprv_strcmp(expected, tag)) {
} else if (expected && uprv_stricmp(expected, tag)) {
log_err("FAIL: expected %s for %s standard name for %s, got %s\n", expected, standard, name, tag);
res = 0;
}