summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_strex.c
diff options
context:
space:
mode:
authortb <>2025-03-09 15:17:22 +0000
committertb <>2025-03-09 15:17:22 +0000
commit02325d3f08b84c968c0a9d0980ccca4efca3c676 (patch)
tree08d72fa2e2521e07c1958b49caf20cec50549672 /src/lib/libcrypto/asn1/a_strex.c
parent85cb68064f0dbda5b0f9fd114c7c3eb0e727fa17 (diff)
downloadopenbsd-02325d3f08b84c968c0a9d0980ccca4efca3c676.tar.gz
openbsd-02325d3f08b84c968c0a9d0980ccca4efca3c676.tar.bz2
openbsd-02325d3f08b84c968c0a9d0980ccca4efca3c676.zip
Unexport X509_NAME_print()
Nothing uses this anymore. M2Crypto has been patched and a fix for opensc has been upstreamed. ok jsing This is the start of a major bump. Don't build the tree until I have synced sets in about 20 commits.
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/asn1/a_strex.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c
index a9ee0dd9c9..5523c22cc4 100644
--- a/src/lib/libcrypto/asn1/a_strex.c
+++ b/src/lib/libcrypto/asn1/a_strex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: a_strex.c,v 1.36 2025/02/08 03:41:36 tb Exp $ */ 1/* $OpenBSD: a_strex.c,v 1.37 2025/03/09 15:17:22 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -590,7 +590,7 @@ x509_name_entry_include(const X509_NAME_ENTRY *ne)
590 return 0; 590 return 0;
591} 591}
592 592
593int 593static int
594X509_NAME_print(BIO *bio, const X509_NAME *name, int obase) 594X509_NAME_print(BIO *bio, const X509_NAME *name, int obase)
595{ 595{
596 CBB cbb; 596 CBB cbb;
@@ -640,7 +640,6 @@ X509_NAME_print(BIO *bio, const X509_NAME *name, int obase)
640 640
641 return ret; 641 return ret;
642} 642}
643LCRYPTO_ALIAS(X509_NAME_print);
644 643
645/* Wrappers round the main functions */ 644/* Wrappers round the main functions */
646 645