nss-pam-ldapd commit: r1134 - in nss-pam-ldapd: . debian pam
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
nss-pam-ldapd commit: r1134 - in nss-pam-ldapd: . debian pam
- From: "Commits of the nss-pam-ldapd project." <nss-pam-ldapd-commits [at] lists.arthurdejong.org>
- To: nss-pam-ldapd-commits [at] lists.arthurdejong.org
- Reply-to: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Subject: nss-pam-ldapd commit: r1134 - in nss-pam-ldapd: . debian pam
- Date: Fri, 4 Jun 2010 10:12:56 +0200 (CEST)
Author: arthur
Date: Fri Jun 4 10:12:54 2010
New Revision: 1134
URL: http://arthurdejong.org/viewvc/nss-pam-ldapd?view=rev&revision=1134
Log:
fix nullok test for password modification
Modified:
nss-pam-ldapd/ChangeLog
nss-pam-ldapd/debian/changelog
nss-pam-ldapd/pam/pam.c
Modified: nss-pam-ldapd/ChangeLog
==============================================================================
--- nss-pam-ldapd/ChangeLog Thu Jun 3 23:24:14 2010 (r1133)
+++ nss-pam-ldapd/ChangeLog Fri Jun 4 10:12:54 2010 (r1134)
@@ -1,3 +1,37 @@
+2010-06-01 20:57 arthur
+
+ * [r1130] nslcd/pam.c: fix bug in test (r1127)
+
+2010-06-01 20:24 arthur
+
+ * [r1129] man/pam_ldap.8.xml, pam/pam.c: implement an nullok PAM
+ option and disable empty passwords by default
+
+2010-06-01 20:04 arthur
+
+ * [r1128] pam/pam.c: don't log failure to do nslcd request to user
+ and log authentication errors during password change
+
+2010-06-01 19:40 arthur
+
+ * [r1127] nslcd/pam.c: add a debug log message when user
+ authentication was successful
+
+2010-06-01 19:39 arthur
+
+ * [r1126] debian/libpam-ldapd.pam-auth-update: don't use
+ use_authtok for password modification by default
+
+2010-05-31 21:16 arthur
+
+ * [r1125] pam/pam.c: fix typo
+
+2010-05-27 20:09 arthur
+
+ * [r1123] AUTHORS, ChangeLog, NEWS, configure.ac, debian/changelog,
+ man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
+ files ready for 0.7.6 release
+
2010-05-26 21:07 arthur
* [r1122] debian/control: drop extra parts of package descriptions
Modified: nss-pam-ldapd/debian/changelog
==============================================================================
--- nss-pam-ldapd/debian/changelog Thu Jun 3 23:24:14 2010 (r1133)
+++ nss-pam-ldapd/debian/changelog Fri Jun 4 10:12:54 2010 (r1134)
@@ -1,3 +1,13 @@
+nss-pam-ldapd (0.7.7) unstable; urgency=low
+
+ * don't use use_authtok for password modification by default (Debian
specific)
+ * fine tune pam-auth-update configuration after discussion with Steve
Langasek (Debian specific)
+
+ * improve logging by PAM module
+ * implement an nullok PAM option and disable empty passwords by default
+
+ -- Arthur de Jong <adejong@debian.org> Tue, 01 Jun 2010 22:39:09 +0200
+
nss-pam-ldapd (0.7.6) unstable; urgency=low
* include libpam-heimdal in libnss-ldapd recommends list of PAM
Modified: nss-pam-ldapd/pam/pam.c
==============================================================================
--- nss-pam-ldapd/pam/pam.c Thu Jun 3 23:24:14 2010 (r1133)
+++ nss-pam-ldapd/pam/pam.c Fri Jun 4 10:12:54 2010 (r1134)
@@ -547,7 +547,7 @@
{
if (cfg.debug)
pam_syslog(pamh,LOG_DEBUG,"user has empty password, access denied");
- rc=PAM_AUTH_ERR;
+ return PAM_AUTH_ERR;
}
/* try authenticating */
rc=nslcd_request_authc(pamh,ctx,&cfg,username,service,oldpassword);
--
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits
- nss-pam-ldapd commit: r1134 - in nss-pam-ldapd: . debian pam,
Commits of the nss-pam-ldapd project.