diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/tacplus | 4 | ||||
-rw-r--r-- | pam_tacplus.h | 2 | ||||
-rw-r--r-- | support.c | 2 |
7 files changed, 8 insertions, 9 deletions
@@ -1,9 +1,7 @@ -1.3.9 +1.3.8 * A lot of cleanups and improvements by Walter de Jong <walter@heiho.net> * Fixed build instruction in spec file and INSTALL * Active_server can not be a pointer, data lost after authentication. - -1.3.8 * Added port option per server, thanks to Luc Ducazu <lducazu@gmail.com> * Fixed missing FIONREAD for solaris * Rearranged header file include for libtac.h, fixes AIX compile problems @@ -1,5 +1,5 @@ -pam_tacplus v1.3.9 +pam_tacplus v1.3.8 Jul 1 2013 This PAM module support the following functions: diff --git a/configure.ac b/configure.ac index 723dfe1..e38e146 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ AC_PREREQ(2.59) AC_COPYRIGHT([ See the included file: COPYING for copyright information. ]) -AC_INIT(pam_tacplus, 1.3.9, [jeroen@jeroennijhof.nl,pawel.krawczyk@hush.com]) +AC_INIT(pam_tacplus, 1.3.8, [jeroen@jeroennijhof.nl,pawel.krawczyk@hush.com]) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([pam_tacplus.c]) diff --git a/debian/changelog b/debian/changelog index bd3d6b0..7f911a6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ libpam-tacplus (1.3.8-1) unstable; urgency=low * New upstream release. + * Fixed pam-configs. Closes: #717716 -- Jeroen Nijhof <jeroen@jeroennijhof.nl> Sat, 8 Sep 2012 12:20:00 +0100 diff --git a/debian/tacplus b/debian/tacplus index bd7a2e3..5296cf6 100644 --- a/debian/tacplus +++ b/debian/tacplus @@ -10,6 +10,6 @@ Account: Password-Type: Primary Password: sufficient pam_tacplus.so -Session-Type: Primary +Session-Type: Additional Session: - sufficient pam_tacplus.so + optional pam_tacplus.so diff --git a/pam_tacplus.h b/pam_tacplus.h index b2f2b3c..bc71b54 100644 --- a/pam_tacplus.h +++ b/pam_tacplus.h @@ -26,7 +26,7 @@ #define PAM_SM_AUTH #define PAM_SM_ACCOUNT #define PAM_SM_SESSION -/* #define PAM_SM_PASSWORD */ +#define PAM_SM_PASSWORD #include <security/pam_appl.h> #include <security/pam_modules.h> @@ -22,7 +22,7 @@ #define PAM_SM_AUTH #define PAM_SM_ACCOUNT #define PAM_SM_SESSION -/* #define PAM_SM_PASSWORD */ +#define PAM_SM_PASSWORD #include "support.h" #include "pam_tacplus.h" |