aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-05-23 11:28:06 +0200
committerIngela Anderton Andin <[email protected]>2014-05-26 15:51:23 +0200
commit4c74437b2318d40dceabb4e9a02117d2cabf25fc (patch)
tree74ef64c7fd377352b1fbd172a99d663ffa9e03a2 /lib/inets/test
parenta59c6b8e80125298a53436e29bf739ccf0f557a7 (diff)
downloadotp-4c74437b2318d40dceabb4e9a02117d2cabf25fc.tar.gz
otp-4c74437b2318d40dceabb4e9a02117d2cabf25fc.tar.bz2
otp-4c74437b2318d40dceabb4e9a02117d2cabf25fc.zip
inets: Correct httpc_SUITE
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/httpc_SUITE.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl
index 1c3bbcaa9c..5efd73dc6f 100644
--- a/lib/inets/test/httpc_SUITE.erl
+++ b/lib/inets/test/httpc_SUITE.erl
@@ -1276,6 +1276,7 @@ dummy_ssl_server_loop(MFA, Handlers, ListenSocket) ->
From ! {stopped, self()}
after 0 ->
{ok, Socket} = ssl:transport_accept(ListenSocket),
+ ok = ssl:ssl_accept(Socket, infinity),
HandlerPid = dummy_request_handler(MFA, Socket),
ssl:controlling_process(Socket, HandlerPid),
HandlerPid ! ssl_controller,