diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-18 07:36:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-18 07:36:16 +0000 |
commit | 4d049a8baacf9ede77b91cff4582798f7df350e8 (patch) | |
tree | cfaf31950736eea36ac04e1f08ff58f8071e0689 /hurd/hurdlookup.c | |
parent | cabcc273c218a247ffecb03a067b80857a353cf4 (diff) | |
download | glibc-4d049a8baacf9ede77b91cff4582798f7df350e8.zip glibc-4d049a8baacf9ede77b91cff4582798f7df350e8.tar.gz glibc-4d049a8baacf9ede77b91cff4582798f7df350e8.tar.bz2 |
Wed Oct 18 03:33:22 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>cvs/libc-951018
* 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.
Diffstat (limited to 'hurd/hurdlookup.c')
-rw-r--r-- | hurd/hurdlookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdlookup.c b/hurd/hurdlookup.c index bc3366c..ee97a13 100644 --- a/hurd/hurdlookup.c +++ b/hurd/hurdlookup.c @@ -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 |