summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2022-03-12 16:23:00 -0500
committerGitHub <noreply@github.com>2022-03-13 05:23:00 +0800
commit40e865b1992ba7b6e890f96539b6bdf1051e4def (patch)
treef2b6c0b903019c615719bd2bf1edb81d0eaa9dd6
parent2bd1c5104a7a55715db93157e4f6a657a4f2a154 (diff)
downloadpyopenssl-40e865b1992ba7b6e890f96539b6bdf1051e4def.tar.gz
Remove call that hasn't been required since OpenSSL 1.1.0 (#1107)
-rw-r--r--src/OpenSSL/crypto.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py
index 51713b6..8116578 100644
--- a/src/OpenSSL/crypto.py
+++ b/src/OpenSSL/crypto.py
@@ -3252,11 +3252,6 @@ load_pkcs12 = utils.deprecated(
# using)).
_lib.OpenSSL_add_all_algorithms()
-# This is similar but exercised mainly by exception_from_error_queue. It calls
-# both ERR_load_crypto_strings() and ERR_load_SSL_strings().
-_lib.SSL_load_error_strings()
-
-
# Set the default string mask to match OpenSSL upstream (since 2005) and
# RFC5280 recommendations.
_lib.ASN1_STRING_set_default_mask_asc(b"utf8only")