Hurd: avoid PLT call to strtoul
authorThomas Schwinge <thomas@schwinge.name>
Thu, 10 May 2012 22:37:23 +0000 (15:37 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 10 May 2012 22:57:28 +0000 (15:57 -0700)
ChangeLog
hurd/lookup-retry.c

index b1dbcba..768fecd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
+
+       * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
+       __strtoul_internal rather than strtoul.
+
 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
 
        * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
index 3c506a0..4fa2a21 100644 (file)
@@ -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