diff options
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | changelog | 7 | ||||
-rw-r--r-- | pam_pwdfile.c | 4 |
3 files changed, 9 insertions, 6 deletions
@@ -1,8 +1,8 @@ README for pam_pwdfile PAM module - Charl P. Botha <cpbotha@ieee.org> -$Id: README,v 1.5 2001-04-17 21:16:12 cpbotha Exp $ +$Id: README,v 1.6 2001-05-12 09:58:43 cpbotha Exp $ --------------------------------------------------------------------------- -This is version 0.7 of pam_pwdfile. +This is version 0.8 of pam_pwdfile. This pam module can be used for the authentication service only, in cases where one wants to use a different set of passwords than those in the main @@ -1,7 +1,12 @@ changelog for pam_pwdfile PAM module - Charl P. Botha <cpbotha@ieee.org> -$Id: changelog,v 1.7 2001-04-17 21:16:12 cpbotha Exp $ +$Id: changelog,v 1.8 2001-05-12 09:58:43 cpbotha Exp $ --------------------------------------------------------------------------- +0.8: Sat May 12 11:57:18 CEST 2001 + +* the MrKen (aka MJ Turner) release. Removed unnecessary include that was + breaking the debian builds. + 0.7: Tue Apr 17 23:13:34 CEST 2001 * changed error message if user is not found in password file diff --git a/pam_pwdfile.c b/pam_pwdfile.c index 3d91d3d..918a4e4 100644 --- a/pam_pwdfile.c +++ b/pam_pwdfile.c @@ -1,6 +1,6 @@ /* pam_pwdfile.c copyright 1999 by Charl P. Botha <cpbotha@ieee.org> * - * $Id: pam_pwdfile.c,v 1.10 2001-04-17 21:16:12 cpbotha Exp $ + * $Id: pam_pwdfile.c,v 1.11 2001-05-12 09:58:43 cpbotha Exp $ * * pam authentication module that can be pointed at any username/crypted * text file so that pam using application can use an alternate set of @@ -42,8 +42,6 @@ * OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <security/_pam_aconf.h> - #include <syslog.h> #include <stdarg.h> #include <stdio.h> |