contrib/extractDS.px: Create RRD file instead of writing to STDOUT.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 17 May 2007 20:59:51 +0000 (22:59 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 17 May 2007 20:59:51 +0000 (22:59 +0200)
This was changed in order to debug new code and then forgotten..

contrib/extractDS.px

index f5370e6..3bf4b9e 100755 (executable)
@@ -236,8 +236,7 @@ sub extract_ds
        my $out_fh;
 
        open ($in_fh,  '-|', 'rrdtool', 'dump', $in_file) or die ("open (rrdtool): $!");
-#      open ($out_fh, '|-', 'rrdtool', 'restore', '-', $out_file) or die ("open (rrdtool): $!");
-       $out_fh = \*STDOUT;
+       open ($out_fh, '|-', 'rrdtool', 'restore', '-', $out_file) or die ("open (rrdtool): $!");
 
        while (my $line = <$in_fh>)
        {