aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-02-15 15:01:10 +0100
committerFredrik Gustafsson <[email protected]>2013-02-15 15:01:10 +0100
commit566ccc1242e79b555e78e2365291a8130355f8f3 (patch)
tree17bdaa8b3883145e6b5a664b0b41372d2f044a62 /lib/inets
parentf7095c4c3ac256f2d587475d11a1cd09f9454a76 (diff)
downloadotp-566ccc1242e79b555e78e2365291a8130355f8f3.tar.gz
otp-566ccc1242e79b555e78e2365291a8130355f8f3.tar.bz2
otp-566ccc1242e79b555e78e2365291a8130355f8f3.zip
Removed case clause for length = 0 for both HTTP1.0 and HTTP1.1
Diffstat (limited to 'lib/inets')
-rw-r--r--lib/inets/src/http_client/httpc_response.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/inets/src/http_client/httpc_response.erl b/lib/inets/src/http_client/httpc_response.erl
index f177aac8f2..9107dfbf05 100644
--- a/lib/inets/src/http_client/httpc_response.erl
+++ b/lib/inets/src/http_client/httpc_response.erl
@@ -430,8 +430,6 @@ format_response({StatusLine, Headers, Body}) ->
Length = list_to_integer(Headers#http_response_h.'content-length'),
{NewBody, Data} =
case Length of
- 0 ->
- {Body, <<>>};
-1 -> % When no lenght indicator is provided
{Body, <<>>};
Length when (Length =< size(Body)) ->