diff options
author | Ingela Anderton Andin <[email protected]> | 2017-12-18 11:06:49 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-12-18 11:25:05 +0100 |
commit | f200ae114c8f3e274f74e9c707ba67c659ef2415 (patch) | |
tree | c8c09c5afce9c2c830aa4e9484bbe1e301bc0ff5 /lib | |
parent | 9b61f4f4b26a77ca08b2a4a4f7776aac58bdff53 (diff) | |
download | otp-f200ae114c8f3e274f74e9c707ba67c659ef2415.tar.gz otp-f200ae114c8f3e274f74e9c707ba67c659ef2415.tar.bz2 otp-f200ae114c8f3e274f74e9c707ba67c659ef2415.zip |
inets: Add missing argument in httpc_SUITE
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index 03178b3b2e..2ad041cc0d 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -1556,7 +1556,7 @@ dummy_request_handler_loop({Module, Function, Args}, SockType, Socket) -> handle_request(Module, Function, Args, Socket) -> case Module:Function(Args) of {ok, Result} -> - case handle_http_msg(Result, Socket) of + case handle_http_msg(Result, Socket, []) of stop -> stop; <<>> -> @@ -1581,7 +1581,7 @@ handle_request(Module, Function, Args, Socket) -> NewMFA end. -handle_http_msg({Method, RelUri, _, {_, Headers}, Body}, Socket) -> +handle_http_msg({Method, RelUri, _, {_, Headers}, Body}, Socket, _) -> ct:print("Request: ~p ~p", [Method, RelUri]), NextRequest = |