summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--README2
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog1
-rw-r--r--debian/tacplus4
-rw-r--r--pam_tacplus.h2
-rw-r--r--support.c2
7 files changed, 8 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index bbb37d8..4c434ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/README b/README
index ae36c1d..886dd95 100644
--- a/README
+++ b/README
@@ -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>
diff --git a/support.c b/support.c
index 3210a37..cc04070 100644
--- a/support.c
+++ b/support.c
@@ -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"