From 291b61a6c3308495aee01dabe03c4f6ed8e118a4 Mon Sep 17 00:00:00 2001 From: nekral-guest Date: Sat, 13 Sep 2008 17:33:52 +0000 Subject: [PATCH] 428_grpck_add_prune_option updated for upstream version 4.1.2. --- debian/changelog | 1 + debian/patches/428_grpck_add_prune_option | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 0940e72e..aa512d87 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ shadow (1:4.1.2-1) experimental; urgency=low + debian/patches/008_login_log_failure_in_FTMP + debian/patches/429_login_FAILLOG_ENAB + debian/patches/507_32char_grnames.dpatch + + debian/patches/428_grpck_add_prune_option * debian/patches/454_userdel_no_MAIL_FILE: Patch removed. If MAIL_FILE is defined, the mailbox is not in MAIL_SPOOL_DIR. * debian/patches/506_relaxed_usernames: Use an extra paragraph for the note diff --git a/debian/patches/428_grpck_add_prune_option b/debian/patches/428_grpck_add_prune_option index d97915d3..c6ecc3cb 100644 --- a/debian/patches/428_grpck_add_prune_option +++ b/debian/patches/428_grpck_add_prune_option @@ -11,9 +11,9 @@ Index: shadow-4.1.0/src/grpck.c +++ shadow-4.1.0/src/grpck.c @@ -139,6 +139,7 @@ /* Options */ - static int read_only = 0; - static int sort_mode = 0; -+static int prune = 0; + static bool read_only = false; + static bool sort_mode = false; ++static bool prune = false; /* local function prototypes */ static void usage (void); @@ -28,10 +28,10 @@ Index: shadow-4.1.0/src/grpck.c /* quiet - ignored for now */ @@ -174,6 +175,9 @@ case 's': - sort_mode = 1; + sort_mode = true; break; + case 'p': -+ prune = 1; ++ prune = true; + break; default: usage ();