aboutsummaryrefslogtreecommitdiffstats
path: root/getpass.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-09-24 20:13:57 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-09-24 20:13:57 +0000
commita12da4ee65e0d140bbbcb811eef1cba93785ce35 (patch)
treec549258dcd9b8d2848da3135cb86d51c75138097 /getpass.c
parentf5ece9304c6f778f8888860b50d431dca147074c (diff)
downloadfetchmail-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/getpass.c b/getpass.c
index b0858a23..6e4b93cf 100644
--- a/getpass.c
+++ b/getpass.c
@@ -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);
}