diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-03-08 22:23:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-03-08 22:23:43 +0000 |
commit | 26b67591cd19fe7cd3595d7012d52adffc9b2391 (patch) | |
tree | 0df7d6d7c1355170b634618342dc99046423905b /sysdeps/posix | |
parent | 518adf8c14fc9b855946aa41fd7d477940e0c7fd (diff) | |
download | glibc-26b67591cd19fe7cd3595d7012d52adffc9b2391.zip glibc-26b67591cd19fe7cd3595d7012d52adffc9b2391.tar.gz glibc-26b67591cd19fe7cd3595d7012d52adffc9b2391.tar.bz2 |
Update.
* sysdeps/posix/gai_strerror.c: Add error string for EAI_IDN_ENCODE.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/gai_strerror.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/posix/gai_strerror.c b/sysdeps/posix/gai_strerror.c index f99f026..e2835a5 100644 --- a/sysdeps/posix/gai_strerror.c +++ b/sysdeps/posix/gai_strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997,2001,02 Free Software Foundation, Inc. +/* Copyright (C) 1997, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell <pjb27@cam.ac.uk>, 1997. @@ -43,7 +43,8 @@ values[] = { EAI_CANCELED, N_("Request canceled") }, { EAI_NOTCANCELED, N_("Request not canceled") }, { EAI_ALLDONE, N_("All requests done") }, - { EAI_INTR, N_("Interrupted by a signal") } + { EAI_INTR, N_("Interrupted by a signal") }, + { EAI_IDN_ENCODE, N_("Parameter string not correctly encoded") } }; const char * |