diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-08-24 18:29:30 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-08-24 18:29:30 +0000 |
commit | e2b06236b68771eba8dabba931d091c4dfe9bb6f (patch) | |
tree | 467c61531927827dc76d1e156940545b7c65a7f9 | |
parent | 4f552174b48efdde7d47e090ebc6203657adc19b (diff) | |
download | pam-e2b06236b68771eba8dabba931d091c4dfe9bb6f.tar.gz pam-e2b06236b68771eba8dabba931d091c4dfe9bb6f.tar.bz2 pam-e2b06236b68771eba8dabba931d091c4dfe9bb6f.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
Of course, it should be LOG_WARNING and not LOG_WARN ...
-rw-r--r-- | modules/pam_lastlog/pam_lastlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_lastlog/pam_lastlog.c b/modules/pam_lastlog/pam_lastlog.c index a26b7c2e..a75e1ce7 100644 --- a/modules/pam_lastlog/pam_lastlog.c +++ b/modules/pam_lastlog/pam_lastlog.c @@ -337,7 +337,7 @@ last_login_date(pam_handle_t *pamh, int announce, uid_t uid, const char *user) D(("unable to create %s file", _PATH_LASTLOG)); return PAM_SERVICE_ERR; } - pam_syslog(pamh, LOG_WARN, + pam_syslog(pamh, LOG_WARNING, "file %s created", _PATH_LASTLOG); D(("file %s created", _PATH_LASTLOG)); } else { |