diff options
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r-- | plugins/check_dns.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c index 276dad8..f8dbb4d 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c | |||
@@ -124,7 +124,7 @@ main (int argc, char **argv) | |||
124 | addresses = malloc(sizeof(*addresses)*10); | 124 | addresses = malloc(sizeof(*addresses)*10); |
125 | else if (!(n_addresses % 10)) | 125 | else if (!(n_addresses % 10)) |
126 | addresses = realloc(addresses,sizeof(*addresses) * (n_addresses + 10)); | 126 | addresses = realloc(addresses,sizeof(*addresses) * (n_addresses + 10)); |
127 | 127 | ||
128 | if (verbose) | 128 | if (verbose) |
129 | puts(chld_out.line[i]); | 129 | puts(chld_out.line[i]); |
130 | 130 | ||
@@ -148,7 +148,7 @@ main (int argc, char **argv) | |||
148 | /* Strip leading spaces */ | 148 | /* Strip leading spaces */ |
149 | for (; *temp_buffer != '\0' && *temp_buffer == ' '; temp_buffer++) | 149 | for (; *temp_buffer != '\0' && *temp_buffer == ' '; temp_buffer++) |
150 | /* NOOP */; | 150 | /* NOOP */; |
151 | 151 | ||
152 | strip(temp_buffer); | 152 | strip(temp_buffer); |
153 | if (temp_buffer==NULL || strlen(temp_buffer)==0) { | 153 | if (temp_buffer==NULL || strlen(temp_buffer)==0) { |
154 | die (STATE_CRITICAL, | 154 | die (STATE_CRITICAL, |
@@ -451,13 +451,13 @@ print_help (void) | |||
451 | printf ("%s\n", _("This plugin uses the nslookup program to obtain the IP address for the given host/domain query.")); | 451 | printf ("%s\n", _("This plugin uses the nslookup program to obtain the IP address for the given host/domain query.")); |
452 | printf ("%s\n", _("An optional DNS server to use may be specified.")); | 452 | printf ("%s\n", _("An optional DNS server to use may be specified.")); |
453 | printf ("%s\n", _("If no DNS server is specified, the default server(s) specified in /etc/resolv.conf will be used.")); | 453 | printf ("%s\n", _("If no DNS server is specified, the default server(s) specified in /etc/resolv.conf will be used.")); |
454 | 454 | ||
455 | printf ("\n\n"); | 455 | printf ("\n\n"); |
456 | 456 | ||
457 | print_usage (); | 457 | print_usage (); |
458 | 458 | ||
459 | printf (_(UT_HELP_VRSN)); | 459 | printf (_(UT_HELP_VRSN)); |
460 | 460 | ||
461 | printf (" -H, --hostname=HOST\n"); | 461 | printf (" -H, --hostname=HOST\n"); |
462 | printf (" %s\n", _("The name or address you want to query")); | 462 | printf (" %s\n", _("The name or address you want to query")); |
463 | printf (" -s, --server=HOST\n"); | 463 | printf (" -s, --server=HOST\n"); |