diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2012-06-24 23:14:12 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2012-06-24 23:14:12 (GMT) |
commit | bf7c4f95aea64e784c66c7ee27da5259ce07f4e1 (patch) | |
tree | 01085159faf8adc60bb9b87ae9ad7f80918ef8b7 /plugins | |
parent | 991054fa6e3d8b3288679ebfe6d84bcfe3ca5d20 (diff) | |
parent | c69890a4b4e3b303ae82cc7eec773486e08c80bb (diff) | |
download | monitoring-plugins-bf7c4f95aea64e784c66c7ee27da5259ce07f4e1.tar.gz |
Merge remote-tracking branch 'github/waja/master'
Conflicts:
NEWS
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_ping.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index bfdee49..23dcd6a 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c | |||
@@ -533,6 +533,8 @@ error_scan (char buf[MAX_INPUT_BUFFER], const char *addr) | |||
533 | die (STATE_CRITICAL, _("CRITICAL - Host not found (%s)"), addr); | 533 | die (STATE_CRITICAL, _("CRITICAL - Host not found (%s)"), addr); |
534 | else if (strstr (buf, "Time to live exceeded")) | 534 | else if (strstr (buf, "Time to live exceeded")) |
535 | die (STATE_CRITICAL, _("CRITICAL - Time to live exceeded (%s)"), addr); | 535 | die (STATE_CRITICAL, _("CRITICAL - Time to live exceeded (%s)"), addr); |
536 | else if (strstr (buf, "Destination unreachable: ")) | ||
537 | die (STATE_CRITICAL, _("CRITICAL - Destination Unreachable (%s)"), addr); | ||
536 | 538 | ||
537 | if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) { | 539 | if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) { |
538 | if (warn_text == NULL) | 540 | if (warn_text == NULL) |