diff options
-rw-r--r-- | plugins/check_ping.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 3a02597c..5eada4f4 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -396,7 +396,10 @@ run_ping (char *command_line) (input_buffer, "%*d packets transmitted, %*d packets received, %d%% packet loss", &pl) == 1 || sscanf - (input_buffer, "%*d packets transmitted, %*d packets received, %d%% loss, time", &pl) == 1 + (input_buffer, "%*d packets transmitted, %*d packets received, %d%% loss, time", &pl) == 1 + || sscanf + (input_buffer, "%*d packets transmitted, %*d received, %d%% loss, time", &pl) == 1 + /* Suse 8.0 as reported by Richard * Brodie */ ) continue; |