summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny007-MKD <nospam@jonny007-mkd.de>2021-05-24 18:40:02 (GMT)
committerSven Nierlein <sven@nierlein.org>2021-09-02 07:56:39 (GMT)
commitcfc43a327526d838db5ec81f5594df4a14319786 (patch)
tree177b439e8964832b5ed3e0455f05ea4c232f36f7
parent2056c5853175e6ad0e041ff3776e10d9e612b521 (diff)
downloadmonitoring-plugins-cfc43a3.tar.gz
Improvements suggested by tobiaswiese
-rw-r--r--plugins/check_dns.c4
-rw-r--r--plugins/t/check_dns.t2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 2f944f9..9de6caf 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -41,7 +41,7 @@ const char *email = "devel@monitoring-plugins.org";
41 41
42int process_arguments (int, char **); 42int process_arguments (int, char **);
43int validate_arguments (void); 43int validate_arguments (void);
44int error_scan (char *, int*); 44int error_scan (char *, int *);
45int ip_match_cidr(const char *, const char *); 45int ip_match_cidr(const char *, const char *);
46unsigned long ip2long(const char *); 46unsigned long ip2long(const char *);
47void print_help (void); 47void print_help (void);
@@ -355,7 +355,7 @@ ip2long(const char* src) {
355} 355}
356 356
357int 357int
358error_scan (char *input_buffer, int* is_nxdomain) 358error_scan (char *input_buffer, int *is_nxdomain)
359{ 359{
360 360
361 const int nxdomain = strstr (input_buffer, "Non-existent") || 361 const int nxdomain = strstr (input_buffer, "Non-existent") ||
diff --git a/plugins/t/check_dns.t b/plugins/t/check_dns.t
index 1e7d534..afb2062 100644
--- a/plugins/t/check_dns.t
+++ b/plugins/t/check_dns.t
@@ -58,7 +58,7 @@ my $dns_server = getTestParameter(
58my $host_nonresponsive = getTestParameter( 58my $host_nonresponsive = getTestParameter(
59 "NP_HOST_NONRESPONSIVE", 59 "NP_HOST_NONRESPONSIVE",
60 "The hostname of system not responsive to network requests", 60 "The hostname of system not responsive to network requests",
61 "192.0.2.0", 61 "10.0.0.1",
62 ); 62 );
63 63
64my $res; 64my $res;