From a12da4ee65e0d140bbbcb811eef1cba93785ce35 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 24 Sep 2001 20:13:57 +0000 Subject: _( -> GT_( svn path=/trunk/; revision=3478 --- env.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'env.c') diff --git a/env.c b/env.c index 3e9c52c3..f83c0f02 100644 --- a/env.c +++ b/env.c @@ -52,7 +52,7 @@ void envquery(int argc, char **argv) if (!(pwp = getpwuid(getuid()))) { fprintf(stderr, - _("%s: You don't exist. Go away.\n"), + GT_("%s: You don't exist. Go away.\n"), program_name); exit(PS_UNDEFINED); } @@ -118,7 +118,7 @@ char *host_fqdn(void) if (gethostname(tmpbuf, sizeof(tmpbuf))) { - fprintf(stderr, _("%s: can't determine your host!"), + fprintf(stderr, GT_("%s: can't determine your host!"), program_name); exit(PS_DNS); } @@ -134,7 +134,7 @@ char *host_fqdn(void) { /* exit with error message */ fprintf(stderr, - _("gethostbyname failed for %s\n"), tmpbuf); + GT_("gethostbyname failed for %s\n"), tmpbuf); exit(PS_DNS); } return(xstrdup(hp->h_name)); -- cgit v1.2.3