diff options
Diffstat (limited to 'iconvdata/iso8859-1.c')
-rw-r--r-- | iconvdata/iso8859-1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iconvdata/iso8859-1.c b/iconvdata/iso8859-1.c index e7c120f138..c6465d2bcf 100644 --- a/iconvdata/iso8859-1.c +++ b/iconvdata/iso8859-1.c @@ -1,5 +1,5 @@ /* Conversion to and from ISO 8859-1. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -44,9 +44,9 @@ gconv_init (struct gconv_step *step, struct gconv_step_data *data) enum direction dir; int result; - if (__strcasestr (step->from_name, "ISO-8859-1") != NULL) + if (strcasestr (step->from_name, "ISO-8859-1") != NULL) dir = from_iso88591; - else if (__strcasestr (step->to_name, "ISO-8859-1") != NULL) + else if (strcasestr (step->to_name, "ISO-8859-1") != NULL) dir = to_iso88591; else dir = illegal; |