File 3422-Update-deprecations.patch of Package erlang
From 8ffea87ab9bd08348946bb19563442218be7b5e3 Mon Sep 17 00:00:00 2001
From: Jakub Witczak <kuba@erlang.org>
Date: Fri, 11 Feb 2022 17:42:24 +0100
Subject: [PATCH 2/2] Update deprecations
---
bootstrap/lib/stdlib/ebin/otp_internal.beam | Bin 5824 -> 5856 bytes
lib/stdlib/src/otp_internal.erl | 8 ++++----
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 6132e9311c..4ab8e307f4 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -54,9 +54,9 @@ obsolete(ftp, start_service, 1) ->
obsolete(ftp, stop_service, 1) ->
{deprecated, "use ftp:close/1 instead", "OTP 26"};
obsolete(http_uri, decode, 1) ->
- {deprecated, "use uri_string functions instead", "OTP 26"};
+ {deprecated, "use uri_string:unquote function instead", "OTP 26"};
obsolete(http_uri, encode, 1) ->
- {deprecated, "use uri_string functions instead", "OTP 25"};
+ {deprecated, "use uri_string:quote function instead", "OTP 26"};
obsolete(http_uri, parse, 1) ->
{deprecated, "use uri_string functions instead", "OTP 25"};
obsolete(http_uri, parse, 2) ->
--
2.34.1