File 0113-inets-fix-typo-in-httpc-error.patch of Package erlang
From a5013d233f1f2327570df7f3d4bd2f2e83bcaad5 Mon Sep 17 00:00:00 2001
From: Anton Thomasson <anton.thomasson@ericsson.com>
Date: Mon, 13 Dec 2021 10:40:14 +0100
Subject: [PATCH] inets: fix typo in httpc error
---
lib/inets/src/http_client/httpc_handler.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/inets/src/http_client/httpc_handler.erl b/lib/inets/src/http_client/httpc_handler.erl
index 74f01bea62..bdc50d5718 100644
--- a/lib/inets/src/http_client/httpc_handler.erl
+++ b/lib/inets/src/http_client/httpc_handler.erl
@@ -962,7 +962,7 @@ handle_http_body(_, #state{status = {ssl_tunnel, _},
handle_http_body(_, #state{status = {ssl_tunnel, Request},
status_line = StatusLine} = State) ->
- ClientErrMsg = httpc_response:error(Request,{could_no_establish_ssh_tunnel, StatusLine}),
+ ClientErrMsg = httpc_response:error(Request,{could_not_establish_ssl_tunnel, StatusLine}),
NewState = answer_request(Request, ClientErrMsg, State),
{stop, normal, NewState};
--
2.31.1