diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
commit | a12da4ee65e0d140bbbcb811eef1cba93785ce35 (patch) | |
tree | c549258dcd9b8d2848da3135cb86d51c75138097 /getpass.c | |
parent | f5ece9304c6f778f8888860b50d431dca147074c (diff) | |
download | fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.gz fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.bz2 fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.zip |
_( -> GT_(
svn path=/trunk/; revision=3478
Diffstat (limited to 'getpass.c')
-rw-r--r-- | getpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -69,7 +69,7 @@ char *prompt; char *getpass(); return getpass(prompt); #else - fputs(_("ERROR: no support for getpassword() routine\n"),stderr); + fputs(GT_("ERROR: no support for getpassword() routine\n"),stderr); exit(1); #endif #else @@ -191,7 +191,7 @@ static void restore_tty_state(void) static RETSIGTYPE sigint_handler(int signum) { restore_tty_state(); - report(stderr, _("\nCaught SIGINT... bailing out.\n")); + report(stderr, GT_("\nCaught SIGINT... bailing out.\n")); exit(1); } |