diff options
author | Jeroen Nijhof <jeroen@chalcy0n.(none)> | 2011-04-21 16:21:01 +0200 |
---|---|---|
committer | Jeroen Nijhof <jeroen@chalcy0n.(none)> | 2011-04-21 16:21:01 +0200 |
commit | 28ad740550c92826a54cf830946ce907d948d898 (patch) | |
tree | 07be62c5c76b11b94d8685806f92b07139459d0a | |
parent | f6bf73038319b47b3065bdc8ee77244954f17b97 (diff) | |
download | pam_tacplus-28ad740550c92826a54cf830946ce907d948d898.tar.gz pam_tacplus-28ad740550c92826a54cf830946ce907d948d898.zip |
Version changed to 1.3.3, changed bitflags to hex, thanks Jason.
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | pam_tacplus.h | 10 |
5 files changed, 23 insertions, 8 deletions
@@ -10,3 +10,11 @@ config/install-sh config/ltmain.sh config/missing configure +.deps/ +Makefile +config.h +config.log +config.status +libtool +pam_tacplus.spec +stamp-h1 @@ -1,3 +1,10 @@ +1.3.3 +* pam_tacplus.h: changed bitflags to hex, thanks Jason! +* Added gitignore for build stuff +* connect.c: removed ifdef for sys/socket.h, it will be included anyway for other platforms, + thanks to Obata Akio for pointing that out. +* connect.c: improved connection error handling, patch from Martin Volf, thanks! + 1.3.2 * Added autotool configuration files, thanks to Benoit Donneaux <benoit.donneaux@gmail.com>. * Added pam_tacplus.spec file, thanks to Benoit Donneaux <benoit.donneaux@gmail.com>. @@ -1,6 +1,6 @@ -pam_tacplus v1.3.2 -Jun 07 2010 +pam_tacplus v1.3.3 +Apr 21 2011 This PAM module support the following functions: diff --git a/configure.ac b/configure.ac index 07c1cdb..d169d3e 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.2, [jeroen@nijhofnet.nl,kravietz@ceti.com.pl]) +AC_INIT(pam_tacplus, 1.3.3, [jeroen@nijhofnet.nl,kravietz@ceti.com.pl]) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([pam_tacplus.c]) diff --git a/pam_tacplus.h b/pam_tacplus.h index 87158a8..407958c 100644 --- a/pam_tacplus.h +++ b/pam_tacplus.h @@ -20,10 +20,10 @@ */ /* pam_tacplus command line options */ -#define PAM_TAC_DEBUG 01 -#define PAM_TAC_ENCRYPT 02 -#define PAM_TAC_FIRSTHIT 04 -#define PAM_TAC_ACCT 10 /* account on all specified servers */ +#define PAM_TAC_DEBUG 0x01 +#define PAM_TAC_ENCRYPT 0x02 +#define PAM_TAC_FIRSTHIT 0x04 +#define PAM_TAC_ACCT 0x08 /* account on all specified servers */ /* how many TACPLUS+ servers can be defined */ #define TAC_MAX_SERVERS 4 @@ -31,7 +31,7 @@ /* pam_tacplus major, minor and patchlevel version numbers */ #define PAM_TAC_VMAJ 1 #define PAM_TAC_VMIN 3 -#define PAM_TAC_VPAT 2 +#define PAM_TAC_VPAT 3 #ifndef PAM_EXTERN #define PAM_EXTERN extern |