aboutsummaryrefslogtreecommitdiffstats
path: root/checkalias.c
diff options
context:
space:
mode:
Diffstat (limited to 'checkalias.c')
-rw-r--r--checkalias.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/checkalias.c b/checkalias.c
index d48826dd..4ddf6789 100644
--- a/checkalias.c
+++ b/checkalias.c
@@ -137,15 +137,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, 0, _("Checking if %s is really the same node as %s"),ctl->server.truename,name);
+ report(stdout, 0, _("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, 0, _("Yes, their IP addresses match"));
+ report(stdout, 0, _("Yes, their IP addresses match\n"));
goto match;
}
if (outlevel >= O_DEBUG)
- report(stdout, 0, _("No, their IP addresses don't match"));
+ report(stdout, 0, _("No, their IP addresses don't match\n"));
}
else
return(FALSE);
@@ -161,9 +161,9 @@ int is_host_alias(const char *name, struct query *ctl)
case TRY_AGAIN: /* temporary error on authoritative server */
default:
if (outlevel != O_SILENT)
- report_complete(stdout, 0, ""); /* terminate the progress message */
+ report_complete(stdout, 0, "\n"); /* terminate the progress message */
report(stderr, 0,
- _("nameserver failure while looking for `%s' during poll of %s."),
+ _("nameserver failure while looking for `%s' during poll of %s.\n"),
name, ctl->server.pollname);
ctl->errcount++;
break;
@@ -188,7 +188,7 @@ int is_host_alias(const char *name, struct query *ctl)
case TRY_AGAIN: /* temporary error on authoritative server */
default:
report(stderr, 0,
- _("nameserver failure while looking for `%s' during poll of %s."),
+ _("nameserver failure while looking for `%s' during poll of %s.\n"),
name, ctl->server.pollname);
ctl->errcount++;
break;