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

r2312 - in glibc-package/branches/glibc-2.6/debian: . patches patches/any



Author: aurel32
Date: 2007-05-30 08:49:24 +0000 (Wed, 30 May 2007)
New Revision: 2312

Added:
   glibc-package/branches/glibc-2.6/debian/patches/any/submitted-strtok.diff
Modified:
   glibc-package/branches/glibc-2.6/debian/changelog
   glibc-package/branches/glibc-2.6/debian/patches/series
Log:
  * any/submitted-strtok.diff: new patch to fix a typo in strings/strtok.c.
    Closes: #426118.



Modified: glibc-package/branches/glibc-2.6/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.6/debian/changelog	2007-05-30 08:48:05 UTC (rev 2311)
+++ glibc-package/branches/glibc-2.6/debian/changelog	2007-05-30 08:49:24 UTC (rev 2312)
@@ -88,6 +88,8 @@
   * kfreebsd/local-sysdeps.diff: update to revision 1942 (from glibc-bsd).
     Thanks to Petr Salinger.
   * arm/cvs-procinfo-eabi.diff: patch from CVS to not include asm/procinfo.h.
+  * any/submitted-strtok.diff: new patch to fix a typo in strings/strtok.c.
+    Closes: #426118.
 
   [ Clint Adams ]
   * debian/local/manpages/ld.so.8: quote accepted values for LD_DEBUG.
@@ -95,7 +97,7 @@
   * New Malayalam debconf translation, by Sajeev പിആര്‍.  closes:
     #426203.
 
- -- Clint Adams <schizo@debian.org>  Sat, 26 May 2007 09:54:06 -0400
+ -- Aurelien Jarno <aurel32@debian.org>  Wed, 30 May 2007 10:47:17 +0200
 
 glibc (2.5-9) unstable; urgency=low
 

Added: glibc-package/branches/glibc-2.6/debian/patches/any/submitted-strtok.diff
===================================================================
--- glibc-package/branches/glibc-2.6/debian/patches/any/submitted-strtok.diff	                        (rev 0)
+++ glibc-package/branches/glibc-2.6/debian/patches/any/submitted-strtok.diff	2007-05-30 08:49:24 UTC (rev 2312)
@@ -0,0 +1,11 @@
+--- string/strtok.c.orig	2007-05-30 10:06:58.000000000 +0200
++++ string/strtok.c	2007-05-30 10:07:56.000000000 +0200
+@@ -30,7 +30,7 @@
+ 	x = strtok(s, "-");		// x = "abc"
+ 	x = strtok(NULL, "-=");		// x = "def"
+ 	x = strtok(NULL, "=");		// x = NULL
+-		// s = "abc\0-def\0"
++		// s = "abc\0=-def\0"
+ */
+ char *
+ strtok (s, delim)

Modified: glibc-package/branches/glibc-2.6/debian/patches/series
===================================================================
--- glibc-package/branches/glibc-2.6/debian/patches/series	2007-05-30 08:48:05 UTC (rev 2311)
+++ glibc-package/branches/glibc-2.6/debian/patches/series	2007-05-30 08:49:24 UTC (rev 2312)
@@ -131,4 +131,5 @@
 any/submitted-clock-settime.diff -p0
 any/submitted-date-and-unknown-tz.diff -p0
 any/submitted-strfry.diff -p0
+any/submitted-strtok.diff -p0
 any/local-disable-nscd-host-caching.diff



Reply to: