summaryrefslogtreecommitdiff
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 8421941a1e..78f584e9fe 100644
--- a/iconv/skeleton.c
+++ b/iconv/skeleton.c
@@ -137,9 +137,9 @@ int
gconv_init (struct gconv_step *step)
{
/* Determine which direction. */
- if (__strcasestr (step->from_name, CHARSET_NAME) != NULL)
+ if (__strcasecmp (step->from_name, CHARSET_NAME) == 0)
step->data = &from_object;
- else if (__strcasestr (step->to_name, CHARSET_NAME) != NULL)
+ else if (__strcasecmp (step->to_name, CHARSET_NAME) == 0)
step->data = &to_object;
else
return GCONV_NOCONV;