diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-02-22 19:48:27 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-02-22 19:48:27 +0000 |
commit | 547545c1cc8ab7e4e37d9650cd095fc0671bc1bf (patch) | |
tree | c51ea2efa955dd6f3dd60d38040dc554db2caafc /modules/pam_lastlog/pam_lastlog.c | |
parent | 0babf02dcc33b6c727811fb70399b4a9979edf32 (diff) | |
download | pam-547545c1cc8ab7e4e37d9650cd095fc0671bc1bf.tar.gz pam-547545c1cc8ab7e4e37d9650cd095fc0671bc1bf.tar.bz2 pam-547545c1cc8ab7e4e37d9650cd095fc0671bc1bf.zip |
Relevant BUGIDs: 1428269
Purpose of commit: new feature
Commit summary:
---------------
2006-02-22 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_lastlog/pam_lastlog.c (last_login_read): Mark strftime
format string for translation to allow reorder [#1428269].
* po/*.po: Update with last pam_lastlog change.
Diffstat (limited to 'modules/pam_lastlog/pam_lastlog.c')
-rw-r--r-- | modules/pam_lastlog/pam_lastlog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/pam_lastlog/pam_lastlog.c b/modules/pam_lastlog/pam_lastlog.c index 7e635335..20c2f03f 100644 --- a/modules/pam_lastlog/pam_lastlog.c +++ b/modules/pam_lastlog/pam_lastlog.c @@ -182,8 +182,9 @@ last_login_read(pam_handle_t *pamh, int announce, int last_fd, uid_t uid) ll_time = last_login.ll_time; tm = localtime_r (&ll_time, &tm_buf); + /* TRANSLATORS: " options for strftime". */ strftime (the_time, sizeof (the_time), - " %a %b %e %H:%M:%S %Z %Y", tm); + _(" %a %b %e %H:%M:%S %Z %Y"), tm); date = the_time; } |