]> granicus.if.org Git - shadow/commitdiff
* NEWS, configure.in: Prepare the 4.1.0 release.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 9 Dec 2007 22:54:53 +0000 (22:54 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 9 Dec 2007 22:54:53 +0000 (22:54 +0000)
* NEWS, src/chgpasswd.c: Use chgpasswd PAM policy file instead of
  chpasswd's one.
* NEWS: The login.defs variables are documented.

ChangeLog
NEWS
configure.in
src/chgpasswd.c

index b8c80a36107270780bd90a7b186c8dfe27079ed2..25079088716e38a393ac748e8f6e926aa3696046 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * NEWS, configure.in: Prepare the 4.1.0 release.
+
+2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * NEWS, src/chgpasswd.c: Use chgpasswd PAM policy file instead of
+       chpasswd's one.
+
 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
 
        * man/pwconv.8.xml: Fix typos.
diff --git a/NEWS b/NEWS
index 339c6a69d9b36741ba55d4f575abd71ddbcdcdd0..e00d241001034bc92496d32b13a600a0a7f5e518 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
 $Id$
 
-shadow-4.0.18.2 -> shadow-4.1.0-rc1                                    UNRELEASED
+shadow-4.0.18.2 -> shadow-4.1.0                                                09-12-2008
+
+*** security:
+- chgpasswd
+  When compiled with PAM support, it used the chpasswd policy file instead
+  of the chgpasswd policy file. If an administrator added some restriction
+  to the chgpasswd policy file, they were not taken into account.
 
 *** general:
 - Add support for SHA256 and SHA512 encrypt methods (supported by new
@@ -63,6 +69,8 @@ shadow-4.0.18.2 -> shadow-4.1.0-rc1                                   UNRELEASED
 - The generated manpages will change depending on the configure options.
   If you use different options than the one used for the distributed
   archive, you should re-generate the manpages.
+- login.defs should now describe all the variables.
+- The tools' documentation details the login.defs variables they use.
 
 shadow-4.0.18.1 -> shadow-4.0.18.2                                     28-10-2007
 
index c40f96b69b5ef327fe82b7cbae51a931581d4c41..574ea67ec328b26b677c0c56b7cf9a0d3f3f29ad 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT
-AM_INIT_AUTOMAKE(shadow, 4.1.0-rc1)
+AM_INIT_AUTOMAKE(shadow, 4.1.0)
 AC_CONFIG_HEADERS([config.h])
 
 dnl Some hacks...
index ac80de7f768b84d2b1140cff509242d9bcc8290a..a677853d7647567003ce2398b2e2c44bb9227926 100644 (file)
@@ -220,7 +220,7 @@ int main (int argc, char **argv)
                }
 
                if (retval == PAM_SUCCESS) {
-                       retval = pam_start ("chpasswd", pampw->pw_name,
+                       retval = pam_start ("chgpasswd", pampw->pw_name,
                                            &conv, &pamh);
                }
        }