diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2012-05-10 15:37:23 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-10 15:57:28 -0700 |
commit | 10589b4adb212dfde20670aacfb76aa842f42b92 (patch) | |
tree | e4b1fe7495701912854e95aad8b2158779c0ecc4 /hurd | |
parent | 63643c85d4c47512decc16f35124160629c39a86 (diff) | |
download | glibc-10589b4adb212dfde20670aacfb76aa842f42b92.tar glibc-10589b4adb212dfde20670aacfb76aa842f42b92.tar.gz glibc-10589b4adb212dfde20670aacfb76aa842f42b92.tar.bz2 glibc-10589b4adb212dfde20670aacfb76aa842f42b92.zip |
Hurd: avoid PLT call to strtoul
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/lookup-retry.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hurd/lookup-retry.c b/hurd/lookup-retry.c index 3c506a043a..4fa2a2199c 100644 --- a/hurd/lookup-retry.c +++ b/hurd/lookup-retry.c @@ -1,6 +1,5 @@ /* hairy bits of Hurd file name lookup - Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2002,2003,2005 - Free Software Foundation, Inc. + Copyright (C) 1992-2012 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 @@ -44,10 +43,10 @@ lookup_error (error_t error) error_t __hurd_file_name_lookup_retry (error_t (*use_init_port) - (int which, error_t (*operate) (file_t)), + (int which, error_t (*operate) (file_t)), file_t (*get_dtable_port) (int fd), error_t (*lookup) - (file_t dir, char *name, + (file_t dir, char *name, int flags, mode_t mode, retry_type *do_retry, string_t retry_name, mach_port_t *result), @@ -193,7 +192,7 @@ __hurd_file_name_lookup_retry (error_t (*use_init_port) char *end; int save = errno; errno = 0; - fd = (int) strtoul (&retryname[3], &end, 10); + fd = (int) __strtoul_internal (&retryname[3], &end, 10, 0); if (end == NULL || errno || /* Malformed number. */ /* Check for excess text after the number. A slash is valid; it ends the component. Anything else |