Wed Oct 18 03:33:22 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
authorRoland McGrath <roland@gnu.org>
Wed, 18 Oct 1995 07:36:16 +0000 (07:36 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 18 Oct 1995 07:36:16 +0000 (07:36 +0000)
* sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.

* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
`fd/', pass the right pointer to strtol to parse the number.

ChangeLog
hurd/hurdlookup.c
sysdeps/generic/_strerror.c

index c920ff4..e400d5c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Oct 18 03:33:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
+
+       * sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.
+
+       * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
+       `fd/', pass the right pointer to strtol to parse the number.
+
 Tue Oct 17 23:00:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * sysdeps/mach/_strerror.c: Include stdio-common/_itoa.h instead
index bc3366c..ee97a13 100644 (file)
@@ -170,7 +170,7 @@ __hurd_file_name_lookup_retry (error_t (*use_init_port)
                  char *end;
                  int save = errno;
                  errno = 0;
-                 fd = (int) strtol (retryname, &end, 10);
+                 fd = (int) strtol (&retryname[3], &end, 10);
                  if (end == NULL || errno || /* Malformed number.  */
                      /* Check for excess text after the number.  A slash
                         is valid; it ends the component.  Anything else
index 72ebb21..71fabe7 100644 (file)
@@ -31,6 +31,9 @@ _strerror_internal (errnum, buf, buflen)
      char *buf;
      size_t buflen;
 {
+  extern const char *const _sys_errlist[];
+  extern const int _sys_nerr;
+
   if (errnum < 0 || errnum > _sys_nerr)
     {
       int len = __snprintf (buf, buflen, _("Unknown error %d"), errnum);