summaryrefslogtreecommitdiff
path: root/modules/pam_tally
diff options
context:
space:
mode:
authorSebastien Tricaud <toady@gscore.org>2005-01-19 10:45:12 +0000
committerSebastien Tricaud <toady@gscore.org>2005-01-19 10:45:12 +0000
commit66ef489cd8a7473420872e27cdad1c11dc098ff6 (patch)
treec7dd3dcd123391f8b7f79e5e8a726e4311d726c4 /modules/pam_tally
parent265d8a5b9d5df51af0e5b0b62b0d390ec04872ae (diff)
Fixed string issue for backward compatibility (pointed out by Yoann Vandoorselaere)
Diffstat (limited to 'modules/pam_tally')
-rw-r--r--modules/pam_tally/pam_tally.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_tally/pam_tally.c b/modules/pam_tally/pam_tally.c
index 637f6172..f1f13c16 100644
--- a/modules/pam_tally/pam_tally.c
+++ b/modules/pam_tally/pam_tally.c
@@ -234,7 +234,7 @@ static int pam_get_uid( pam_handle_t *pamh, uid_t *uid, const char **userp, stru
if ( ! ( pw = _pammodutil_getpwnam( pamh, user ) ) ) {
opts->ctrl & OPT_AUDIT ?
_pam_log(LOG_ERR,MODULE_NAME ": pam_get_uid; no such user %s",user) :
- _pam_log(LOG_ERR,MODULE_NAME ": pam_get_uid; user unknown");
+ _pam_log(LOG_ERR,MODULE_NAME ": pam_get_uid; no such user");
return PAM_USER_UNKNOWN;
}