aboutsummaryrefslogtreecommitdiffstats
path: root/checkalias.c
diff options
context:
space:
mode:
Diffstat (limited to 'checkalias.c')
-rw-r--r--checkalias.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/checkalias.c b/checkalias.c
index 8525d24a..f8f8058b 100644
--- a/checkalias.c
+++ b/checkalias.c
@@ -168,15 +168,15 @@ int is_host_alias(const char *name, struct query *ctl)
else if (((he_st = gethostbyname(ctl->server.truename)) != (struct hostent *)NULL) && ctl->server.checkalias)
{
if (outlevel >= O_DEBUG)
- report(stdout, _("Checking if %s is really the same node as %s\n"),ctl->server.truename,name);
+ report(stdout, GT_("Checking if %s is really the same node as %s\n"),ctl->server.truename,name);
if (is_ip_alias(ctl->server.truename,name) == TRUE)
{
if (outlevel >= O_DEBUG)
- report(stdout, _("Yes, their IP addresses match\n"));
+ report(stdout, GT_("Yes, their IP addresses match\n"));
goto match;
}
if (outlevel >= O_DEBUG)
- report(stdout, _("No, their IP addresses don't match\n"));
+ report(stdout, GT_("No, their IP addresses don't match\n"));
return(FALSE);
}
else
@@ -196,7 +196,7 @@ int is_host_alias(const char *name, struct query *ctl)
if (outlevel != O_SILENT)
report_complete(stdout, "\n"); /* terminate the progress message */
report(stderr,
- _("nameserver failure while looking for `%s' during poll of %s.\n"),
+ GT_("nameserver failure while looking for `%s' during poll of %s.\n"),
name, ctl->server.pollname);
ctl->errcount++;
break;
@@ -222,7 +222,7 @@ int is_host_alias(const char *name, struct query *ctl)
case TRY_AGAIN: /* temporary error on authoritative server */
default:
report(stderr,
- _("nameserver failure while looking for `%s' during poll of %s.\n"),
+ GT_("nameserver failure while looking for `%s' during poll of %s.\n"),
name, ctl->server.pollname);
ctl->errcount++;
break;