summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--lib/Smokeping/probes/Curl.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 15615b6..f7a86b0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+* make the Curl probe compatible with Perl 5.6
+ -- niko, reported by Ben Eisenbraun <bene *klatsch.org>
+
2005/10/19 -- released version 20051019_trunk
* get rid of 'Use of uninitialized value' messages when using the Avgratio matcher
diff --git a/lib/Smokeping/probes/Curl.pm b/lib/Smokeping/probes/Curl.pm
index af5be29..de56758 100644
--- a/lib/Smokeping/probes/Curl.pm
+++ b/lib/Smokeping/probes/Curl.pm
@@ -263,7 +263,7 @@ sub pingone {
my $count = $self->pings($t);
for (my $i = 0 ; $i < $count; $i++) {
- open(P, "-|", @cmd) or croak("fork: $!");
+ open(P, "-|") or exec @cmd;
my $val;