diff options
-rw-r--r-- | CHANGES | 9 | ||||
-rw-r--r-- | THANKS.in | 1 | ||||
-rw-r--r-- | plugins/check_ping.c | 2 | ||||
-rw-r--r-- | plugins/netutils.c | 10 |
4 files changed, 15 insertions, 7 deletions
@@ -1,5 +1,14 @@ | |||
1 | This file documents the major additions and syntax changes between releases. | 1 | This file documents the major additions and syntax changes between releases. |
2 | 2 | ||
3 | ?? | ||
4 | Reduced number of DNS lookups in check_ping and netutils.c for IPv6 configurations | ||
5 | |||
6 | 1.4.6 | ||
7 | Fixed compile problems with *BSD re: alloca.h | ||
8 | |||
9 | 1.4.5 | ||
10 | Fixed bug in perl's is_hostname routine | ||
11 | |||
3 | 1.4.4 | 12 | 1.4.4 |
4 | New C based check_ntp. The perl version is now deprecated. | 13 | New C based check_ntp. The perl version is now deprecated. |
5 | New check_apt plugin | 14 | New check_apt plugin |
@@ -200,3 +200,4 @@ Robby Giffin | |||
200 | Henning Schmiedehausen | 200 | Henning Schmiedehausen |
201 | Markus Baertschi | 201 | Markus Baertschi |
202 | Florian Gleixner | 202 | Florian Gleixner |
203 | Pawel Malachowski | ||
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 750b055..9652ab7 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c | |||
@@ -109,7 +109,7 @@ main (int argc, char **argv) | |||
109 | for (i = 0 ; i < n_addresses ; i++) { | 109 | for (i = 0 ; i < n_addresses ; i++) { |
110 | 110 | ||
111 | #ifdef PING6_COMMAND | 111 | #ifdef PING6_COMMAND |
112 | if (is_inet6_addr(addresses[i]) && address_family != AF_INET) | 112 | if (address_family != AF_INET && is_inet6_addr(addresses[i])) |
113 | rawcmd = strdup(PING6_COMMAND); | 113 | rawcmd = strdup(PING6_COMMAND); |
114 | else | 114 | else |
115 | rawcmd = strdup(PING_COMMAND); | 115 | rawcmd = strdup(PING_COMMAND); |
diff --git a/plugins/netutils.c b/plugins/netutils.c index a3a241d..9294f3a 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c | |||
@@ -324,14 +324,12 @@ int | |||
324 | is_addr (const char *address) | 324 | is_addr (const char *address) |
325 | { | 325 | { |
326 | #ifdef USE_IPV6 | 326 | #ifdef USE_IPV6 |
327 | if (is_inet_addr (address) && address_family != AF_INET6) | 327 | if (address_family == AF_INET && is_inet_addr (address)) |
328 | return TRUE; | ||
329 | else if (address_family == AF_INET6 && is_inet6_addr (address)) | ||
330 | return TRUE; | ||
328 | #else | 331 | #else |
329 | if (is_inet_addr (address)) | 332 | if (is_inet_addr (address)) |
330 | #endif | ||
331 | return (TRUE); | ||
332 | |||
333 | #ifdef USE_IPV6 | ||
334 | if (is_inet6_addr (address) && address_family != AF_INET) | ||
335 | return (TRUE); | 333 | return (TRUE); |
336 | #endif | 334 | #endif |
337 | 335 | ||