Fix fixprogs

This commit is contained in:
Damien Miller 2000-09-16 16:10:56 +11:00
parent 9d5705a4b3
commit aeaa1264b5
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ foreach (@infile) {
# child
close STDIN; close STDOUT; close STDERR;
open (STDIN, "</dev/null");
open (STDOUT, ">/tmp/foo");
open (STDOUT, ">/dev/null");
open (STDERR, ">/dev/null");
exec $path @args;
exit 1; # shouldn't be here