aboutsummaryrefslogtreecommitdiffstats
path: root/getpass.c
diff options
context:
space:
mode:
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);
}