diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-14 17:49:01 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-14 17:49:01 +0000 |
commit | f690636933b7d212240b2ce09dddaea703f391c9 (patch) | |
tree | c3847f63fc17533d346e3e7a9de88b242c69dad3 /libpam_misc | |
parent | faf4e0e73632c500cc1380c882310d6965ebfaf8 (diff) | |
download | pam-f690636933b7d212240b2ce09dddaea703f391c9.tar.gz pam-f690636933b7d212240b2ce09dddaea703f391c9.tar.bz2 pam-f690636933b7d212240b2ce09dddaea703f391c9.zip |
Relevant BUGIDs: none
Purpose of commit: bugfix
Commit summary:
---------------
pam_vsyslog: Restore errno after each asprintf.
misc_conv.c: don't use special control characters, non-ascii terminal can run
into problems with them.
de.po: Translate some more strings.
*.po: Adjust translations for misc_conv.c.
Diffstat (limited to 'libpam_misc')
-rw-r--r-- | libpam_misc/misc_conv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpam_misc/misc_conv.c b/libpam_misc/misc_conv.c index dc8e1b2e..ded256b2 100644 --- a/libpam_misc/misc_conv.c +++ b/libpam_misc/misc_conv.c @@ -32,8 +32,8 @@ time_t pam_misc_conv_warn_time = 0; /* time when we warn */ time_t pam_misc_conv_die_time = 0; /* time when we timeout */ -const char *pam_misc_conv_warn_line = N_("..\a.Time is running out...\n"); -const char *pam_misc_conv_die_line = N_("..\a.Sorry, your time is up!\n"); +const char *pam_misc_conv_warn_line = N_("...Time is running out...\n"); +const char *pam_misc_conv_die_line = N_("...Sorry, your time is up!\n"); int pam_misc_conv_died=0; /* application can probe this for timeout */ |