From bd4848fb22d5125ef9717b152097d26c855682f4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 22 Jan 1999 13:02:12 +0000 Subject: Update. 1999-01-22 Ulrich Drepper * iconv/gconv_conf.c (add_alias): Convert names to uppercase before adding into search tree. (add_module): Likewise. * iconv/iconv_open.c: Likewise. * iconv/gconv_db.c: Change all __strcasecmp to strcmp. * iconv/skeleton.c (gconv_init): Likewise. --- iconv/skeleton.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iconv/skeleton.c') diff --git a/iconv/skeleton.c b/iconv/skeleton.c index c124eb1e07..55d938bd7e 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -143,7 +143,7 @@ int gconv_init (struct gconv_step *step) { /* Determine which direction. */ - if (__strcasecmp (step->from_name, CHARSET_NAME) == 0) + if (strcmp (step->from_name, CHARSET_NAME) == 0) { step->data = &from_object; @@ -152,7 +152,7 @@ gconv_init (struct gconv_step *step) step->min_needed_to = MIN_NEEDED_TO; step->max_needed_to = MAX_NEEDED_TO; } - else if (__strcasecmp (step->to_name, CHARSET_NAME) == 0) + else if (strcmp (step->to_name, CHARSET_NAME) == 0) { step->data = &to_object; -- cgit v1.2.3