summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_prn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/x509_prn.c')
-rw-r--r--src/lib/libcrypto/x509/x509_prn.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_prn.c b/src/lib/libcrypto/x509/x509_prn.c
index 4977051d4a..b7db631500 100644
--- a/src/lib/libcrypto/x509/x509_prn.c
+++ b/src/lib/libcrypto/x509/x509_prn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_prn.c,v 1.2 2021/11/01 20:53:08 tb Exp $ */ 1/* $OpenBSD: x509_prn.c,v 1.3 2022/11/14 17:48:50 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 1999. 3 * project 1999.
4 */ 4 */
@@ -99,6 +99,7 @@ X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml)
99 BIO_puts(out, "\n"); 99 BIO_puts(out, "\n");
100 } 100 }
101} 101}
102LCRYPTO_ALIAS(X509V3_EXT_val_prn)
102 103
103/* Main routine: print out a general extension */ 104/* Main routine: print out a general extension */
104 105
@@ -152,6 +153,7 @@ err:
152 method->ext_free(ext_str); 153 method->ext_free(ext_str);
153 return ok; 154 return ok;
154} 155}
156LCRYPTO_ALIAS(X509V3_EXT_print)
155 157
156int 158int
157X509V3_extensions_print(BIO *bp, const char *title, 159X509V3_extensions_print(BIO *bp, const char *title,
@@ -187,6 +189,7 @@ X509V3_extensions_print(BIO *bp, const char *title,
187 } 189 }
188 return 1; 190 return 1;
189} 191}
192LCRYPTO_ALIAS(X509V3_extensions_print)
190 193
191static int 194static int
192unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, 195unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
@@ -225,3 +228,4 @@ X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
225 BIO_free(bio_tmp); 228 BIO_free(bio_tmp);
226 return ret; 229 return ret;
227} 230}
231LCRYPTO_ALIAS(X509V3_EXT_print_fp)