[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2650 - in glibc-package/branches/glibc-2.7/debian: . patches patches/hurd-i386



Author: aurel32
Date: 2007-11-02 09:01:08 +0000 (Fri, 02 Nov 2007)
New Revision: 2650

Added:
   glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-strtoul.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * Add hurd-i386/submitted-strtoul.diff: new patch to use
    __strtoul_internal() instead of strtoul() in internal functions.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.7/debian/changelog	2007-11-02 00:16:34 UTC (rev 2649)
+++ glibc-package/branches/glibc-2.7/debian/changelog	2007-11-02 09:01:08 UTC (rev 2650)
@@ -78,6 +78,8 @@
   * locales-depver: tighten locales dependencies.
   * any/local-disable-test-tgmath2.diff: new patch to disable test-tgmath2,
     which take too much resources during compilation.
+  * Add hurd-i386/submitted-strtoul.diff: new patch to use
+    __strtoul_internal() instead of strtoul() in internal functions.
 
   [ Petr Salinger]
   * any/local-linuxthreads-unwind.diff: provide unwind-resume routine for
@@ -96,8 +98,11 @@
   * Update patches/locale/preprocessor-collate.diff.
   * Add alpha/submitted-PTR_MANGLE.diff (Closes: #448508).
 
- -- Aurelien Jarno <aurel32@debian.org>  Thu, 01 Nov 2007 17:20:03 +0100
+  [ Aurelien Jarno ]
+  * 
 
+ -- Aurelien Jarno <aurel32@debian.org>  Fri, 02 Nov 2007 09:58:50 +0100
+
 glibc (2.6.1-6) unstable; urgency=low
 
   [ Aurelien Jarno ]

Added: glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-strtoul.diff
===================================================================
--- glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-strtoul.diff	                        (rev 0)
+++ glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-strtoul.diff	2007-11-02 09:01:08 UTC (rev 2650)
@@ -0,0 +1,16 @@
+2007-11-02  Aurelien Jarno  <aurelien@aurel32.net>
+
+	* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use 
+	  __strtoul_internal instead of strtoul.
+
+--- hurd/lookup-retry.c.orig
++++ hurd/lookup-retry.c
+@@ -194,7 +194,7 @@
+ 		  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

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===================================================================
--- glibc-package/branches/glibc-2.7/debian/patches/series	2007-11-02 00:16:34 UTC (rev 2649)
+++ glibc-package/branches/glibc-2.7/debian/patches/series	2007-11-02 09:01:08 UTC (rev 2650)
@@ -81,6 +81,7 @@
 hurd-i386/submitted-ioctl-decode-argument.diff -p0
 hurd-i386/submitted-libc_once.diff -p0
 hurd-i386/submitted-stat.diff -p0
+hurd-i386/submitted-strtoul.diff -p0
 hurd-i386/submitted-sysvshm.diff 
 hurd-i386/submitted-trivial.diff -p0
 hurd-i386/submitted-ioctl-unsigned-size_t.diff -p0



Reply to: