From e67c1696bbed15b890ec953f22e39e1fe266b9f9 Mon Sep 17 00:00:00 2001 From: Seraphim Mellos Date: Mon, 16 Jun 2008 22:57:28 +0300 Subject: Added logging/debug msgs in pam_unix --- modules/pam_unix/pam_unix.c | 2 +- modules/pam_unix/pam_unix.c~ | 12 ++++++------ modules/pam_unix/pam_unix.o | Bin 12128 -> 0 bytes modules/pam_unix/pam_unix.so | Bin 15981 -> 0 bytes 4 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 modules/pam_unix/pam_unix.o delete mode 100755 modules/pam_unix/pam_unix.so diff --git a/modules/pam_unix/pam_unix.c b/modules/pam_unix/pam_unix.c index d70693d..0443a5a 100644 --- a/modules/pam_unix/pam_unix.c +++ b/modules/pam_unix/pam_unix.c @@ -481,7 +481,7 @@ makesalt(char salt[SALTSIZE]) { */ for (i = 0; i < SALTSIZE; i += 4) - to64(&salt[i], arc4random(), 4); +// to64(&salt[i], arc4random(), 4); salt[SALTSIZE] = '\0'; } diff --git a/modules/pam_unix/pam_unix.c~ b/modules/pam_unix/pam_unix.c~ index a1ab562..d70693d 100644 --- a/modules/pam_unix/pam_unix.c~ +++ b/modules/pam_unix/pam_unix.c~ @@ -193,7 +193,7 @@ pam_sm_acct_mgmt(pam_handle_t *pamh, int flags , lc = login_getpwclass(pwd); if (lc == NULL) { - PAM_ERR("Unable to get login class for user [%s]"); + PAM_ERROR("Unable to get login class for user [%s]"); return (PAM_SERVICE_ERR); } #endif @@ -206,10 +206,10 @@ pam_sm_acct_mgmt(pam_handle_t *pamh, int flags , #ifndef __linux__ login_close(lc); #endif - PAM_ERR("Account has expired!"); + PAM_ERROR("Account has expired!"); return (PAM_ACCT_EXPIRED); } else if ( ( pwd->sp_expire - curtime < DEFAULT_WARN) ) { - PAM_ERR(pamh, "Warning: your account expires on %s", + PAM_ERROR(pamh, "Warning: your account expires on %s", ctime(&pwd->sp_expire)); } } @@ -223,13 +223,13 @@ pam_sm_acct_mgmt(pam_handle_t *pamh, int flags , if ((curtime > (pwd->sp_lstchg + pwd->sp_max + pwd->sp_inact)) && (pwd->sp_max != -1) && (pwd->sp_inact != -1) && (pwd->sp_lstchg != 0)) { - PAM_ERR("Account has expired!"); + PAM_ERROR("Account has expired!"); return (PAM_ACCT_EXPIRED); } if (((pwd->sp_lstchg + pwd->sp_max) < curtime) && (pwd->sp_max != -1)) { - PAM_ERR("Account has expired!"); + PAM_ERROR("Account has expired!"); return (PAM_ACCT_EXPIRED); } @@ -237,7 +237,7 @@ pam_sm_acct_mgmt(pam_handle_t *pamh, int flags , && (curtime - pwd->sp_lstchg > pwd->sp_inact) && (curtime - pwd->sp_lstchg > pwd->sp_max + pwd->sp_inact) && (pwd->sp_max != -1) && (pwd->sp_inact != -1)) { - PAM_ERR("Account has expired!"); + PAM_ERROR("Account has expired!"); return (PAM_ACCT_EXPIRED); } diff --git a/modules/pam_unix/pam_unix.o b/modules/pam_unix/pam_unix.o deleted file mode 100644 index f179bea..0000000 Binary files a/modules/pam_unix/pam_unix.o and /dev/null differ diff --git a/modules/pam_unix/pam_unix.so b/modules/pam_unix/pam_unix.so deleted file mode 100755 index c87b5df..0000000 Binary files a/modules/pam_unix/pam_unix.so and /dev/null differ -- cgit v1.2.3-65-gdbad