From dfbad9c855e5aee39492fdc9fbe98eac5846f49c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 20 Feb 1998 18:45:36 +0000 Subject: Update. 1998-02-20 18:43 Ulrich Drepper * 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 * sysdeps/unix/sysv/linux/bits/termios.h: Replace all negative feature tests by positive feature tests. 1998-02-19 Andreas Schwab * sysdeps/unix/sysv/linux/unlockpt.c: Always return a value. 1998-02-20 Ulrich Drepper * elf/dlvsym.c (dlvsym_doit): More corrections. Patch by Andreas Jaeger. --- iconvdata/8bit-gap.c | 6 +++--- iconvdata/8bit-generic.c | 6 +++--- iconvdata/iso6937.c | 6 +++--- iconvdata/iso8859-1.c | 6 +++--- iconvdata/sjis.c | 6 +++--- iconvdata/t61.c | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) (limited to 'iconvdata') diff --git a/iconvdata/8bit-gap.c b/iconvdata/8bit-gap.c index 0bcc91b..301bd6b 100644 --- a/iconvdata/8bit-gap.c +++ b/iconvdata/8bit-gap.c @@ -1,6 +1,6 @@ /* Generic conversion to and from 8bit charsets, converting from UCS using gaps. - 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 , 1997. @@ -57,9 +57,9 @@ gconv_init (struct gconv_step *step, struct gconv_step_data *data) enum direction dir; int result; - if (__strcasestr (step->from_name, NAME) != NULL) + if (strcasestr (step->from_name, NAME) != NULL) dir = from_8bit; - else if (__strcasestr (step->to_name, NAME) != NULL) + else if (strcasestr (step->to_name, NAME) != NULL) dir = to_8bit; else dir = illegal; diff --git a/iconvdata/8bit-generic.c b/iconvdata/8bit-generic.c index fe0a09b..e8493fc 100644 --- a/iconvdata/8bit-generic.c +++ b/iconvdata/8bit-generic.c @@ -1,5 +1,5 @@ /* Generic conversion to and from 8bit charsets. - 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 , 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, NAME) != NULL) + if (strcasestr (step->from_name, NAME) != NULL) dir = from_8bit; - else if (__strcasestr (step->to_name, NAME) != NULL) + else if (strcasestr (step->to_name, NAME) != NULL) dir = to_8bit; else dir = illegal; diff --git a/iconvdata/iso6937.c b/iconvdata/iso6937.c index b79a9aa..0108036 100644 --- a/iconvdata/iso6937.c +++ b/iconvdata/iso6937.c @@ -1,5 +1,5 @@ /* Generic conversion to and from ISO 6937. - 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 , 1997. @@ -394,9 +394,9 @@ gconv_init (struct gconv_step *step, struct gconv_step_data *data) enum direction dir; int result; - if (__strcasestr (step->from_name, "ISO_6937") != NULL) + if (strcasestr (step->from_name, "ISO_6937") != NULL) dir = from_iso6937; - else if (__strcasestr (step->to_name, "ISO_6937") != NULL) + else if (strcasestr (step->to_name, "ISO_6937") != NULL) dir = to_iso6937; else dir = illegal; diff --git a/iconvdata/iso8859-1.c b/iconvdata/iso8859-1.c index e7c120f..c6465d2 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 , 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; diff --git a/iconvdata/sjis.c b/iconvdata/sjis.c index df581a5..492bbd7 100644 --- a/iconvdata/sjis.c +++ b/iconvdata/sjis.c @@ -1,5 +1,5 @@ /* Mapping tables for SJIS handling. - 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 , 1997. @@ -4004,9 +4004,9 @@ gconv_init (struct gconv_step *step, struct gconv_step_data *data) enum direction dir; int result; - if (__strcasestr (step->from_name, "SJIS") != NULL) + if (strcasestr (step->from_name, "SJIS") != NULL) dir = from_sjis; - else if (__strcasestr (step->to_name, "SJIS") != NULL) + else if (strcasestr (step->to_name, "SJIS") != NULL) dir = to_sjis; else dir = illegal; diff --git a/iconvdata/t61.c b/iconvdata/t61.c index c5bbc42..a8de21c 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 , 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; -- cgit v1.1