diff options
-rw-r--r-- | plugins/check_ping.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 74b6fce2..50878337 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -419,7 +419,9 @@ run_ping (const char *cmd, const char *addr) sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% loss, time",&pl)==1 || sscanf(buf,"%*d packets transmitted, %*d received, %d%% loss, time", &pl)==1 || sscanf(buf,"%*d packets transmitted, %*d received, %d%% packet loss, time", &pl)==1 || - sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1) + sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1 || + sscanf(buf,"%*d packets transmitted %*d received, +%*d errors, %d%% packet loss", &pl) == 1 + ) continue; /* get the round trip average */ |