1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 11:59:03 +00:00

Fix a copy-paste mistake in Ncat test suite.

This commit is contained in:
d33tah
2013-08-30 10:23:22 +00:00
parent d68d608d7d
commit 695be03e60

View File

@@ -1880,7 +1880,7 @@ proxy_test "HTTP CONNECT proxy relays",
$resp eq "abc\n" or die "Proxy relayed \"$resp\", not \"abc\\n\"";
syswrite($s_in, "def\n");
$resp = timeout_read($c_out) or die "Read timeout";
$resp eq "def\n" or die "Proxy relayed \"$resp\", not \"abc\\n\"";
$resp eq "def\n" or die "Proxy relayed \"$resp\", not \"def\\n\"";
};
# Proxy client shouldn't see the status line returned by the proxy server.