summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_strex.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 19:37:54 +0000
committerbeck <>2023-07-07 19:37:54 +0000
commit1ca8095297adf80b48019b5a2d18010ff9e3427f (patch)
treeb1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/asn1/a_strex.c
parent66ac57d506be0af957abeb5a5a7334a8d2a36c9b (diff)
downloadopenbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.tar.gz
openbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.tar.bz2
openbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.zip
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing. This unbreaks the namespace build so it will pass again ok tb@
Diffstat (limited to 'src/lib/libcrypto/asn1/a_strex.c')
-rw-r--r--src/lib/libcrypto/asn1/a_strex.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c
index c40a13d013..17213cbd3a 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.33 2023/07/05 21:23:36 beck Exp $ */ 1/* $OpenBSD: a_strex.c,v 1.34 2023/07/07 19:37:52 beck 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 */
@@ -570,7 +570,6 @@ X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
570 return X509_NAME_print(out, nm, indent); 570 return X509_NAME_print(out, nm, indent);
571 return do_name_ex(send_bio_chars, out, nm, indent, flags); 571 return do_name_ex(send_bio_chars, out, nm, indent, flags);
572} 572}
573LCRYPTO_ALIAS(X509_NAME_print_ex);
574 573
575int 574int
576X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, 575X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
@@ -588,7 +587,6 @@ X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
588 } 587 }
589 return do_name_ex(send_fp_chars, fp, nm, indent, flags); 588 return do_name_ex(send_fp_chars, fp, nm, indent, flags);
590} 589}
591LCRYPTO_ALIAS(X509_NAME_print_ex_fp);
592 590
593int 591int
594ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags) 592ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags)