[Pkg-shadow-commits] r997 - in trunk/debian: . patches

Nicolas FRANCOIS nekral-guest at costa.debian.org
Thu May 18 17:55:24 UTC 2006


Author: nekral-guest
Date: 2006-05-18 17:55:22 +0000 (Thu, 18 May 2006)
New Revision: 997

Added:
   trunk/debian/patches/392_correct_exit_status_for_run_commands
Removed:
   trunk/debian/patches/492_correct_exit_status_for_run_commands
Modified:
   trunk/debian/changelog
   trunk/debian/patches/series
Log:
Rename 492_correct_exit_status_for_run_commands to 392_xxx since it is applied
upstream for the new 4.0.16 release.


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-05-18 17:36:40 UTC (rev 996)
+++ trunk/debian/changelog	2006-05-18 17:55:22 UTC (rev 997)
@@ -9,8 +9,8 @@
       + rename 407_32char_grnames.dpatch to 507_xxx for the same reason.
       + rename 432_login_cancel_timout_after_authentication to 332_xxx,
         because it is already applied upstream.
-      + rename 461_keep_sticky_bit_for_dirs to 361_xxx for the same reason.
-      + rename 486_chgpasswd.8 to 386_xxx for the same reason.
+      + Likewise for 461_keep_sticky_bit_for_dirs, 486_chgpasswd.8 and
+        492_correct_exit_status_for_run_commands
 
  -- Christian Perrier <bubulle at debian.org>  Thu, 18 May 2006 01:44:56 -0500
 

Copied: trunk/debian/patches/392_correct_exit_status_for_run_commands (from rev 990, trunk/debian/patches/492_correct_exit_status_for_run_commands)

Deleted: trunk/debian/patches/492_correct_exit_status_for_run_commands
===================================================================
--- trunk/debian/patches/492_correct_exit_status_for_run_commands	2006-05-18 17:36:40 UTC (rev 996)
+++ trunk/debian/patches/492_correct_exit_status_for_run_commands	2006-05-18 17:55:22 UTC (rev 997)
@@ -1,24 +0,0 @@
-Goal: Do not exit with a status 0 when the invoked command is terminated
-      by a signal which was not catched
-
-Fix: #360276
-
-Author: Eero Häkkinen <eero17 at bigfoot.com>
-
-Status wrt upstream: will be in 4.0.16
-
-Index: shadow-4.0.15/src/su.c
-===================================================================
---- shadow-4.0.15.orig/src/su.c	2006-04-01 12:31:34.000000000 +0200
-+++ shadow-4.0.15/src/su.c	2006-04-01 12:38:15.680753816 +0200
-@@ -272,7 +272,9 @@
- 		exit (-1);
- 	}
- 
--	exit (WEXITSTATUS (status));
-+	exit (WIFEXITED (status)
-+	      ? WEXITSTATUS (status)
-+	      : WTERMSIG (status) + 128);
- }
- #endif
- 

Modified: trunk/debian/patches/series
===================================================================
--- trunk/debian/patches/series	2006-05-18 17:36:40 UTC (rev 996)
+++ trunk/debian/patches/series	2006-05-18 17:55:22 UTC (rev 997)
@@ -37,7 +37,7 @@
 491_configure.in_friendly_selinux_detection
 592_manpages_typos
 386_chgpasswd.8
-492_correct_exit_status_for_run_commands
+392_correct_exit_status_for_run_commands
 303_usermod_-a_in_man
 351_nl-359913
 352_id-361186




More information about the Pkg-shadow-commits mailing list