summaryrefslogtreecommitdiffstats
path: root/plugins/check_dns.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2004-11-24 00:46:40 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2004-11-24 00:46:40 (GMT)
commit0c1c9f51e2c33db04918d2aa322fd1f9a688979b (patch)
treec7956483bce0deb4b73ca3a6b9d0b7f2e97620db /plugins/check_dns.c
parent589d4664919638bedd6e2e1710c323887d19584a (diff)
downloadmonitoring-plugins-0c1c9f51e2c33db04918d2aa322fd1f9a688979b.tar.gz
Making messages more consistent
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@930 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r--plugins/check_dns.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 39023f9..7b18270 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -331,9 +331,7 @@ process_arguments (int argc, char **argv)
331 case 'r': /* reverse server name */ 331 case 'r': /* reverse server name */
332 /* TODO: Is this is_host necessary? */ 332 /* TODO: Is this is_host necessary? */
333 if (is_host (optarg) == FALSE) { 333 if (is_host (optarg) == FALSE) {
334 printf (_("Invalid host name/address\n\n")); 334 usage2 (_("Invalid host name/address"), optarg);
335 print_usage ();
336 exit (STATE_UNKNOWN);
337 } 335 }
338 if (strlen (optarg) >= ADDRESS_LENGTH) 336 if (strlen (optarg) >= ADDRESS_LENGTH)
339 die (STATE_UNKNOWN, _("Input buffer overflow\n")); 337 die (STATE_UNKNOWN, _("Input buffer overflow\n"));
@@ -391,8 +389,8 @@ print_help (void)
391{ 389{
392 print_revision (progname, revision); 390 print_revision (progname, revision);
393 391
394 printf (_("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n")); 392 printf ("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n");
395 printf (_(COPYRIGHT), copyright, email); 393 printf (COPYRIGHT, copyright, email);
396 394
397 print_usage (); 395 print_usage ();
398 396