From b76967c325eeab394413104212580c8680476ded Mon Sep 17 00:00:00 2001 From: david Date: Fri, 16 Aug 2013 08:03:08 +0000 Subject: [PATCH] Don't use a listen address by default. --- ncat/test/ncat-test.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncat/test/ncat-test.pl b/ncat/test/ncat-test.pl index 64a872750..9a49a75e4 100755 --- a/ncat/test/ncat-test.pl +++ b/ncat/test/ncat-test.pl @@ -74,7 +74,7 @@ sub wait_listen { } sub ncat_server { - my @ret = ncat($HOST, $PORT, "--test", "-l", @_); + my @ret = ncat($PORT, "--test", "-l", @_); wait_listen($ret[3]); return @ret; }