aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeraphim Mellos <mellos@ceid.upatras.gr>2008-06-16 22:57:28 +0300
committerSeraphim Mellos <mellos@ceid.upatras.gr>2008-06-17 16:53:37 +0300
commit1b97abdfa329378a56f1eea7791a75d8b8fc2293 (patch)
tree75ef453038ac0e08b24555f372a2ce8f2e6d4b98 /modules/pam_unix
parentAdded logging/debug msgs in pam_unix (diff)
downloadopenpam-modules-1b97abdfa329378a56f1eea7791a75d8b8fc2293.tar.gz
openpam-modules-1b97abdfa329378a56f1eea7791a75d8b8fc2293.tar.bz2
openpam-modules-1b97abdfa329378a56f1eea7791a75d8b8fc2293.zip
Added logging/debug msgs in pam_unix
Diffstat (limited to 'modules/pam_unix')
-rw-r--r--modules/pam_unix/pam_unix.c12
1 files changed, 6 insertions, 6 deletions
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);
}