1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-01 02:59:01 +00:00

Remove a close that made a test unreliable.

This commit is contained in:
david
2013-02-23 06:54:31 +00:00
parent c60b72f7a0
commit ee4d1e126b

View File

@@ -719,8 +719,6 @@ server_client_test_tcp_sctp_ssl "Debug messages go to stderr",
$resp = timeout_read($s_out) or die "Read timeout";
$resp eq "abc\n" or die "Server got \"$resp\", not \"abc\\n\"";
syswrite($s_in, "abc\n");
close($s_in);
close($c_in);
$resp = timeout_read($c_out) or die "Read timeout";
$resp eq "abc\n" or die "Server got \"$resp\", not \"abc\\n\"";
};