diff options
Diffstat (limited to 'pam_tacplus.h')
-rw-r--r-- | pam_tacplus.h | 10 |
1 files changed, 5 insertions, 5 deletions
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 |