]> andersk Git - openssh.git/blobdiff - fixprogs
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / fixprogs
index 4a70d2f9f7b03bbd067c1a8d2956ca7e94d58c58..af76ee3924569e3e3e73279f0f110d0642689d5a 100755 (executable)
--- a/fixprogs
+++ b/fixprogs
@@ -44,9 +44,9 @@ foreach (@infile) {
    if (! ($pid = fork())) {
      # child
      close STDIN; close STDOUT; close STDERR;
-     open STDIN,  "</dev/null";
-     open STDOUT, ">/dev/null";
-     open STDERR, ">/dev/null";
+     open (STDIN,  "</dev/null");
+     open (STDOUT, ">/dev/null");
+     open (STDERR, ">/dev/null");
      exec $path @args;
      exit 1; # shouldn't be here
    }
@@ -65,7 +65,7 @@ foreach (@infile) {
       ($null, $null, $rate) = split(/,/, $ent[0]);
       $est = $rate / $entscale;                # scale the estimate back
     }
-  }    
+  }
   print OUT "\"$cmd\" $path $est\n";
 }
 
This page took 0.034871 seconds and 4 git commands to generate.