diff --git a/ncat/test/ncat-test.pl b/ncat/test/ncat-test.pl index 58fa4ce4e..a036b04ba 100755 --- a/ncat/test/ncat-test.pl +++ b/ncat/test/ncat-test.pl @@ -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); }