diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/gai_strerror.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2007-01-31 Jean-Louis Martineau <martineau@zmanda.com> (tiny change) + + * lib/gai_strerror.c (values): Add EAI_OVERFLOW. + 2007-01-30 Jim Meyering <jim@meyering.net> * lib/mpsort.c (mpsort): Remove spurious "return" in void function. diff --git a/lib/gai_strerror.c b/lib/gai_strerror.c index 7f0e034e66..aa733d6cc3 100644 --- a/lib/gai_strerror.c +++ b/lib/gai_strerror.c @@ -52,6 +52,7 @@ values[] = { EAI_SERVICE, N_("Servname not supported for ai_socktype") }, { EAI_SOCKTYPE, N_("ai_socktype not supported") }, { EAI_SYSTEM, N_("System error") }, + { EAI_OVERFLOW, N_("Argument buffer too small") }, #ifdef __USE_GNU { EAI_INPROGRESS, N_("Processing request in progress") }, { EAI_CANCELED, N_("Request canceled") }, |