about summary refs log tree commit diff
path: root/iconvdata/t61.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-20 18:45:36 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-20 18:45:36 +0000
commitdfbad9c855e5aee39492fdc9fbe98eac5846f49c (patch)
treebacfee7faf9f5ce25185b712b01e4f4835e68651 /iconvdata/t61.c
parent03e4219e7783eaa6d5cf1b02a79e00b857185e55 (diff)
downloadglibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.tar.gz
glibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.tar.xz
glibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.zip
Update.
1998-02-20 18:43  Ulrich Drepper  <drepper@cygnus.com>

	* hesiod/hesiod.c: Pretty print.  Don't use __ protected names.
	* iconvdata/8bit-gap.c: Likewise.
	* iconvdata/8bit-generic.c: Likewise.
	* iconvdata/iso6937.c: Likewise.
	* iconvdata/iso8859-1.c: Likewise.
	* iconvdata/sjis.c: Likewise.
	* iconvdata/t61.c: Likewise.

1998-02-20  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* sysdeps/unix/sysv/linux/bits/termios.h: Replace all negative
	feature tests by positive feature tests.

1998-02-19  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* sysdeps/unix/sysv/linux/unlockpt.c: Always return a value.

1998-02-20  Ulrich Drepper  <drepper@cygnus.com>

	* elf/dlvsym.c (dlvsym_doit): More corrections.
	Patch by Andreas Jaeger.
Diffstat (limited to 'iconvdata/t61.c')
-rw-r--r--iconvdata/t61.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/iconvdata/t61.c b/iconvdata/t61.c
index c5bbc42a50..a8de21cc3d 100644
--- a/iconvdata/t61.c
+++ b/iconvdata/t61.c
@@ -1,5 +1,5 @@
 /* Generic conversion to and from T.61.
-   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.
 
@@ -385,9 +385,9 @@ gconv_init (struct gconv_step *step, struct gconv_step_data *data)
   enum direction dir;
   int result;
 
-  if (__strcasestr (step->from_name, "T.61") != NULL)
+  if (strcasestr (step->from_name, "T.61") != NULL)
     dir = from_t61;
-  else if (__strcasestr (step->to_name, "T.61") != NULL)
+  else if (strcasestr (step->to_name, "T.61") != NULL)
     dir = to_t61;
   else
     dir = illegal;