diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/a_strex.c')
-rw-r--r-- | src/lib/libcrypto/asn1/a_strex.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index 91aa8d2643..c40a13d013 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.32 2022/11/26 16:08:50 tb Exp $ */ | 1 | /* $OpenBSD: a_strex.c,v 1.33 2023/07/05 21:23:36 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,6 +570,7 @@ 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 | } |
573 | LCRYPTO_ALIAS(X509_NAME_print_ex); | ||
573 | 574 | ||
574 | int | 575 | int |
575 | X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, | 576 | X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, |
@@ -587,15 +588,18 @@ X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, | |||
587 | } | 588 | } |
588 | return do_name_ex(send_fp_chars, fp, nm, indent, flags); | 589 | return do_name_ex(send_fp_chars, fp, nm, indent, flags); |
589 | } | 590 | } |
591 | LCRYPTO_ALIAS(X509_NAME_print_ex_fp); | ||
590 | 592 | ||
591 | int | 593 | int |
592 | ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags) | 594 | ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags) |
593 | { | 595 | { |
594 | return do_print_ex(send_bio_chars, out, flags, str); | 596 | return do_print_ex(send_bio_chars, out, flags, str); |
595 | } | 597 | } |
598 | LCRYPTO_ALIAS(ASN1_STRING_print_ex); | ||
596 | 599 | ||
597 | int | 600 | int |
598 | ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags) | 601 | ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags) |
599 | { | 602 | { |
600 | return do_print_ex(send_fp_chars, fp, flags, str); | 603 | return do_print_ex(send_fp_chars, fp, flags, str); |
601 | } | 604 | } |
605 | LCRYPTO_ALIAS(ASN1_STRING_print_ex_fp); | ||