]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 4 Apr 2001 06:16:40 +0000 (06:16 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 4 Apr 2001 06:16:40 +0000 (06:16 +0000)
2001-04-03  Ulrich Drepper  <drepper@redhat.com>

* resolv/netdb.h (gai_strerror): Make return value const.
* sysdeps/generic/gai_strerror.c (gai_strerror): Likewise.
* sysdeps/posix/gai_strerror.c (gai_strerror): Likewise.
Add strings for new error values.

ChangeLog
resolv/netdb.h
sysdeps/generic/gai_strerror.c
sysdeps/posix/gai_strerror.c

index b6ac4f1106aca04bb1444db24c96d3ffb77a169f..f3baabbf8a2838846795a25e5b8e3f11332c587f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-04-03  Ulrich Drepper  <drepper@redhat.com>
+
+       * resolv/netdb.h (gai_strerror): Make return value const.
+       * sysdeps/generic/gai_strerror.c (gai_strerror): Likewise.
+       * sysdeps/posix/gai_strerror.c (gai_strerror): Likewise.
+       Add strings for new error values.
+
 2001-03-29  Michael Keezer  <mkeezer@redhat.com>
 
        * posix/tst-gnuglob.c: Added ifdef _DIRENT_HAVE_D_TYPE.
index 09ca37bbbff619899a3c4371b16988269f680f14..e54c974f2f861bf93b8f465dee46eafddd604a23 100644 (file)
@@ -482,7 +482,7 @@ extern int getaddrinfo (__const char *__restrict __name,
 extern void freeaddrinfo (struct addrinfo *__ai) __THROW;
 
 /* Convert error return from getaddrinfo() to a string.  */
-extern char *gai_strerror (int __ecode) __THROW;
+extern __const char *gai_strerror (int __ecode) __THROW;
 
 /* Translate a socket address to a location and service name.  */
 extern int getnameinfo (__const struct sockaddr *__restrict __sa,
index b63f0e26233eb9a0c45910617a48f49cda9d8cf4..a2c9d8faeb5467afe9a15ee9b0d6dbb350528941 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -19,7 +19,7 @@
 #include <errno.h>
 #include <netdb.h>
 
-char *
+const char *
 gai_strerror (int code)
 {
   static char buffer[128];
index 490cd5bc577a880626b8a150047684c89a6828b0..b4381eb3733a1cf8aa878ee56914c5fe24319c39 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Philip Blundell <pjb27@cam.ac.uk>, 1997.
 
@@ -38,16 +38,21 @@ values[] =
     { EAI_NONAME, N_("Name or service not known") },
     { EAI_SERVICE, N_("Servname not supported for ai_socktype") },
     { EAI_SOCKTYPE, N_("ai_socktype not supported") },
-    { EAI_SYSTEM, N_("System error") }
+    { EAI_SYSTEM, N_("System error") },
+    { EAI_INPROGRESS, N_("Processing request in progress") },
+    { EAI_CANCELED, N_("Request canceled") },
+    { EAI_NOTCANCELED, N_("Request not canceled") },
+    { EAI_ALLDONE, N_("All requests done") },
+    { EAI_INTR, N_("Interrupted by a signal") }
   };
 
-char *
+const char *
 gai_strerror (int code)
 {
   size_t i;
   for (i = 0; i < sizeof (values) / sizeof (values[0]); ++i)
     if (values[i].code == code)
-      return (char *) values[i].msg;
+      return _(values[i].msg);
 
-  return (char *) _("Unknown error");
+  return _("Unknown error");
 }
This page took 0.048057 seconds and 5 git commands to generate.