Hello community, here is the log from the commit of package pwdutils for openSUSE:Factory checked in at 2012-05-10 14:33:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pwdutils (Old) and /work/SRC/openSUSE:Factory/.pwdutils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pwdutils", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/pwdutils/pwdutils.changes 2012-03-19 10:12:28.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.pwdutils.new/pwdutils.changes 2012-05-10 14:34:36.000000000 +0200 @@ -1,0 +2,6 @@ +Tue May 8 16:44:15 CEST 2012 - [email protected] + +- Update to version 3.2.19 (fixes [bnc#754081], display of + account status) + +------------------------------------------------------------------- Old: ---- pwdutils-3.2.18.tar.bz2 New: ---- pwdutils-3.2.19.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pwdutils.spec ++++++ --- /var/tmp/diff_new_pack.8kZucv/_old 2012-05-10 14:34:38.000000000 +0200 +++ /var/tmp/diff_new_pack.8kZucv/_new 2012-05-10 14:34:38.000000000 +0200 @@ -30,7 +30,7 @@ BuildRequires: libselinux-devel %endif Url: http://www.thkukuk.de/pam/pwdutils/ -Version: 3.2.18 +Version: 3.2.19 Release: 0 Summary: Utilities to Manage User and Group Accounts License: GPL-2.0 ++++++ pwdutils-3.2.18.tar.bz2 -> pwdutils-3.2.19.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pwdutils-3.2.18/ChangeLog new/pwdutils-3.2.19/ChangeLog --- old/pwdutils-3.2.18/ChangeLog 2012-03-13 14:15:33.000000000 +0100 +++ new/pwdutils-3.2.19/ChangeLog 2012-05-08 14:14:08.000000000 +0200 @@ -1,3 +1,10 @@ +2012-05-08 Thorsten Kukuk <[email protected]> + + * release version 3.2.19 + + * src/passwd.c (pw_status): Fix check for locked password + [bnc#754081]. + 2012-03-13 Thorsten Kukuk <[email protected]> * release version 3.2.18 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pwdutils-3.2.18/NEWS new/pwdutils-3.2.19/NEWS --- old/pwdutils-3.2.18/NEWS 2012-03-13 14:15:03.000000000 +0100 +++ new/pwdutils-3.2.19/NEWS 2012-05-08 14:14:48.000000000 +0200 @@ -4,6 +4,9 @@ Please send bug reports, questions and suggestions to <[email protected]>. +Version 3.2.19 +* Fix passwd -S + Version 3.2.18 * Fix changing of permissions if uid/gid of user will be modified diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pwdutils-3.2.18/configure new/pwdutils-3.2.19/configure --- old/pwdutils-3.2.18/configure 2012-03-13 14:15:42.000000000 +0100 +++ new/pwdutils-3.2.19/configure 2012-05-08 14:55:40.000000000 +0200 @@ -2431,7 +2431,7 @@ # Define the identity of the package. PACKAGE="pwdutils" - VERSION=3.2.18 + VERSION=3.2.19 cat >>confdefs.h <<_ACEOF diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pwdutils-3.2.18/configure.in new/pwdutils-3.2.19/configure.in --- old/pwdutils-3.2.18/configure.in 2012-03-13 14:14:09.000000000 +0100 +++ new/pwdutils-3.2.19/configure.in 2012-05-08 14:14:25.000000000 +0200 @@ -4,7 +4,7 @@ dnl Author: Thorsten Kukuk <[email protected]> dnl AC_INIT(src/passwd.c) -AM_INIT_AUTOMAKE("pwdutils", 3.2.18) +AM_INIT_AUTOMAKE("pwdutils", 3.2.19) AM_CONFIG_HEADER(config.h) AC_PREFIX_DEFAULT(/usr) AC_CANONICAL_HOST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pwdutils-3.2.18/src/passwd.c new/pwdutils-3.2.19/src/passwd.c --- old/pwdutils-3.2.18/src/passwd.c 2007-02-28 10:40:41.000000000 +0100 +++ new/pwdutils-3.2.19/src/passwd.c 2012-05-08 14:12:35.000000000 +0200 @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005, 2006 Thorsten Kukuk +/* Copyright (C) 2003, 2004, 2005, 2006, 2012 Thorsten Kukuk Author: Thorsten Kukuk <[email protected]> This program is free software; you can redistribute it and/or modify @@ -88,10 +88,10 @@ static const char * pw_status (const char *pass) { - if (*pass == '*' || *pass == '!' || *pass == 'x') - return "LK"; if (*pass == '\0') return "NP"; + if (*pass == '*' || *pass == '!' || strcmp (pass, "x") == 0) + return "LK"; return "PS"; } ++++++ pwdutils-no-add-needed.patch ++++++ --- /var/tmp/diff_new_pack.8kZucv/_old 2012-05-10 14:34:38.000000000 +0200 +++ /var/tmp/diff_new_pack.8kZucv/_new 2012-05-10 14:34:38.000000000 +0200 @@ -7,7 +7,7 @@ -AC_INIT(src/passwd.c) +AC_INIT +AC_CONFIG_SRCDIR([src/passwd.c]) - AM_INIT_AUTOMAKE("pwdutils", 3.2.18) + AM_INIT_AUTOMAKE("pwdutils", 3.2.19) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADERS([config.h]) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
