This commit is contained in:
david 2013-08-16 08:03:20 +00:00
parent e373fd5a5c
commit 48058be247

View file

@ -45,7 +45,7 @@ sub ncat {
# print join(" ", ($NCAT, @_)) . "\n";
$pid = open3(*IN, *OUT, *ERR, $NCAT, @_);
if (!defined $pid) {
die "open2 failed";
die "open3 failed";
}
return ($pid, *OUT, *IN, *ERR);
}