aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpd_test_lib.erl
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2014-05-27 13:42:15 +0200
committerErlang/OTP <[email protected]>2014-05-27 13:42:15 +0200
commite35e0db4d7527cebd14a655d7686c8c375d42f94 (patch)
tree871bd2166f24aea9a650cf8927774849b57f4777 /lib/inets/test/httpd_test_lib.erl
parented485d3bcba0aefaa5cb7e489a8438e3c012a99a (diff)
parentee3fd715255a865b80532ad1cf88e51a8a4147ba (diff)
downloadotp-e35e0db4d7527cebd14a655d7686c8c375d42f94.tar.gz
otp-e35e0db4d7527cebd14a655d7686c8c375d42f94.tar.bz2
otp-e35e0db4d7527cebd14a655d7686c8c375d42f94.zip
Merge branch 'ia/inets/maint-17/string-lengths/OTP-11925' into maint-17
* ia/inets/maint-17/string-lengths/OTP-11925: inets: httpd - Behave well on not so long but wrong request lines inets: httpc - update test suite framwork to adopt to change in httpd inets: httpd - Reject incorrect large request lines early
Diffstat (limited to 'lib/inets/test/httpd_test_lib.erl')
-rw-r--r--lib/inets/test/httpd_test_lib.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_test_lib.erl b/lib/inets/test/httpd_test_lib.erl
index ed466fd727..36a5bb9e71 100644
--- a/lib/inets/test/httpd_test_lib.erl
+++ b/lib/inets/test/httpd_test_lib.erl
@@ -103,7 +103,7 @@ verify_request(SocketType, Host, Port, TranspOpts0, Node, RequestStr, Options, T
try inets_test_lib:connect_bin(SocketType, Host, Port, TranspOpts) of
{ok, Socket} ->
- SendRes = inets_test_lib:send(SocketType, Socket, RequestStr),
+ ok = inets_test_lib:send(SocketType, Socket, RequestStr),
State = case inets_regexp:match(RequestStr, "printenv") of
nomatch ->
#state{};