about summary refs log tree commit diff
path: root/iconv/skeleton.c
diff options
context:
space:
mode:
Diffstat (limited to 'iconv/skeleton.c')
-rw-r--r--iconv/skeleton.c4
1 files changed, 2 insertions, 2 deletions
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;