diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2024-04-09 13:55:03 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2024-04-09 13:55:03 +0000 |
commit | 1a02fccca004fef379a30bbb75519bbd83c93f5c (patch) | |
tree | 663a5e9f53309950618b99c39aa6b8615f6bf8b0 /lib/libcrypto/asn1/t_crl.c | |
parent | 2b194996b73270677d0829736f766133cebed8b2 (diff) |
Hide public symbols in x509.h
This picks up most of the remaining public symbols in
x509.h
ok tb@
Diffstat (limited to 'lib/libcrypto/asn1/t_crl.c')
-rw-r--r-- | lib/libcrypto/asn1/t_crl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/t_crl.c b/lib/libcrypto/asn1/t_crl.c index d662d99ec5e..1ff6ea02adb 100644 --- a/lib/libcrypto/asn1/t_crl.c +++ b/lib/libcrypto/asn1/t_crl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t_crl.c,v 1.23 2023/07/07 19:37:52 beck Exp $ */ +/* $OpenBSD: t_crl.c,v 1.24 2024/04/09 13:55:02 beck Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -83,6 +83,7 @@ X509_CRL_print_fp(FILE *fp, X509_CRL *x) BIO_free(b); return (ret); } +LCRYPTO_ALIAS(X509_CRL_print_fp); int X509_CRL_print(BIO *out, X509_CRL *x) @@ -143,3 +144,4 @@ X509_CRL_print(BIO *out, X509_CRL *x) err: return 0; } +LCRYPTO_ALIAS(X509_CRL_print); |