diff options
author | Sebastien Tricaud <toady@gscore.org> | 2005-01-19 10:45:12 +0000 |
---|---|---|
committer | Sebastien Tricaud <toady@gscore.org> | 2005-01-19 10:45:12 +0000 |
commit | 66ef489cd8a7473420872e27cdad1c11dc098ff6 (patch) | |
tree | c7dd3dcd123391f8b7f79e5e8a726e4311d726c4 /modules/pam_tally | |
parent | 265d8a5b9d5df51af0e5b0b62b0d390ec04872ae (diff) | |
download | pam-66ef489cd8a7473420872e27cdad1c11dc098ff6.tar.gz pam-66ef489cd8a7473420872e27cdad1c11dc098ff6.tar.bz2 pam-66ef489cd8a7473420872e27cdad1c11dc098ff6.zip |
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.c | 2 |
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; } |