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

r1190 - in glibc-package/trunk/debian: . patches



Author: aurel32
Date: 2006-02-18 23:48:02 +0000 (Sat, 18 Feb 2006)
New Revision: 1190

Added:
   glibc-package/trunk/debian/patches/glibc-manual-string.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * Fix the strcasestr() examples in the manual.  (Closes: #289853)
  


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-02-18 23:46:15 UTC (rev 1189)
+++ glibc-package/trunk/debian/changelog	2006-02-18 23:48:02 UTC (rev 1190)
@@ -43,6 +43,7 @@
   * Add hurd-ioctl-decode-argument.diff (fixes decoding of ioctl 
     arguments) from Samuel Thibault.  (Closes: #320273)
   * Fix the prototype of sbrk() in the manual.  (Closes: #281863)
+  * Fix the strcasestr() examples in the manual.  (Closes: #289853)
 
  -- Clint Adams <schizo@debian.org>  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/glibc-manual-string.diff
===================================================================
--- glibc-package/trunk/debian/patches/glibc-manual-string.diff	2006-02-18 23:46:15 UTC (rev 1189)
+++ glibc-package/trunk/debian/patches/glibc-manual-string.diff	2006-02-18 23:48:02 UTC (rev 1190)
@@ -0,0 +1,23 @@
+2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
+
+        * manual/string.texi (strcasestr): Fix example typo.
+
+===================================================================
+RCS file: /cvs/glibc/libc/manual/string.texi,v
+retrieving revision 1.69
+retrieving revision 1.70
+diff -u -r1.69 -r1.70
+--- libc/manual/string.texi	2004/07/14 17:10:28	1.69
++++ libc/manual/string.texi	2005/01/26 02:39:11	1.70
+@@ -1781,9 +1781,9 @@
+ 
+ For example,
+ @smallexample
+-strstr ("hello, world", "L")
++strcasestr ("hello, world", "L")
+     @result{} "llo, world"
+-strstr ("hello, World", "wo")
++strcasestr ("hello, World", "wo")
+     @result{} "World"
+ @end smallexample
+ @end deftypefun

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2006-02-18 23:46:15 UTC (rev 1189)
+++ glibc-package/trunk/debian/patches/series	2006-02-18 23:48:02 UTC (rev 1190)
@@ -125,3 +125,4 @@
 hppa-no-ldbl-128.diff -p1
 glibc-manual-memory.diff -p1
 hurd-ioctl-decode-argument.diff -p0
+glibc-manual-string.diff -p1



Reply to: