[Pkg-sysvinit-commits] r1515 - in sysvinit/trunk/debian: . patches

Petter Reinholdtsen pere at alioth.debian.org
Fri Jul 24 13:37:46 UTC 2009


Author: pere
Date: 2009-07-24 13:37:45 +0000 (Fri, 24 Jul 2009)
New Revision: 1515

Removed:
   sysvinit/trunk/debian/patches/63_init_longer_procname.dpatch
Modified:
   sysvinit/trunk/debian/changelog
   sysvinit/trunk/debian/patches/00list
Log:
Drop patch 63_init_longer_procname now included upstream.

Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog	2009-07-24 13:36:45 UTC (rev 1514)
+++ sysvinit/trunk/debian/changelog	2009-07-24 13:37:45 UTC (rev 1515)
@@ -25,6 +25,7 @@
     - Drop patch 53_bootlogd_ttyB now included upstream.
     - Drop patch 60_init_race now included upstream.
     - Drop patch 61_init_msg now included upstream.
+    - Drop patch 63_init_longer_procname now included upstream.
 
   * XXX Need to remove debian patches now included in the new upstream release.
 

Modified: sysvinit/trunk/debian/patches/00list
===================================================================
--- sysvinit/trunk/debian/patches/00list	2009-07-24 13:36:45 UTC (rev 1514)
+++ sysvinit/trunk/debian/patches/00list	2009-07-24 13:37:45 UTC (rev 1515)
@@ -8,7 +8,6 @@
 46_pidof_symlinkman
 54_bootlogd_findptyfail
 62_init_freebsdterm
-##63_init_longer_procname
 ##64_init_set_PATH
 ##64_init_reexec_env
 ##65_init_u_in_06

Deleted: sysvinit/trunk/debian/patches/63_init_longer_procname.dpatch
===================================================================
--- sysvinit/trunk/debian/patches/63_init_longer_procname.dpatch	2009-07-24 13:36:45 UTC (rev 1514)
+++ sysvinit/trunk/debian/patches/63_init_longer_procname.dpatch	2009-07-24 13:37:45 UTC (rev 1515)
@@ -1,23 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 63_init_longer_procname.dpatch by Kir Kolyshkin
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Terminate argv0 with one 0 rather than two so that process
-## DP: name can be one character longer
-
- at DPATCH@
-diff -urNad trunk~/src/init.c trunk/src/init.c
---- trunk~/src/init.c	2008-03-26 09:34:03.000000000 +0100
-+++ trunk/src/init.c	2008-03-26 09:34:03.000000000 +0100
-@@ -469,9 +469,9 @@
- 	len = vsnprintf(buf, sizeof(buf), fmt, ap);
- 	va_end(ap);
- 
--	if (maxproclen > 2) {
-+	if (maxproclen > 1) {
- 		memset(argv0, 0, maxproclen);
--		strncpy(argv0, buf, maxproclen - 2);
-+		strncpy(argv0, buf, maxproclen - 1);
- 	}
- 
- 	return len;




More information about the Pkg-sysvinit-commits mailing list