freebsd-ports/net-mgmt/cacti/files/patch-scripts-ping.pl
Ryan Steinmetz 4eb9475a99 - Update to 0.8.7h.
Software changes include:
- Fix SQL injection issue with user login
- Fix Cross-site scripting issues
- Make one minute polling work properly

PR:		ports/162044
Submitted by:	moggie <moggie@elasticmind.net>
Approved by:	sem
Obtained from:	zi
2011-10-28 15:47:08 +00:00

11 lines
430 B
Raku

--- ./scripts/ping.pl.orig 2011-10-26 09:31:56.000000000 -0400
+++ ./scripts/ping.pl 2011-10-26 09:32:02.000000000 -0400
@@ -6,7 +6,7 @@
# old linux version use "icmp_seq"
# newer use "icmp_req" instead
-open(PROCESS, "ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |");
+open(PROCESS, "/sbin/ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |");
$ping = <PROCESS>;
close(PROCESS);
$ping =~ m/(.*time=)(.*) (ms|usec)/;