diff options
author | beck <> | 2023-07-07 19:37:54 +0000 |
---|---|---|
committer | beck <> | 2023-07-07 19:37:54 +0000 |
commit | 8d42940c1d19bb9bd4ce45580f18a59069225432 (patch) | |
tree | b1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/asn1/t_req.c | |
parent | 1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff) | |
download | openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.gz openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.bz2 openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.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/t_req.c')
-rw-r--r-- | src/lib/libcrypto/asn1/t_req.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/t_req.c b/src/lib/libcrypto/asn1/t_req.c index 0fb46c286f..2fd9842434 100644 --- a/src/lib/libcrypto/asn1/t_req.c +++ b/src/lib/libcrypto/asn1/t_req.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: t_req.c,v 1.25 2023/07/05 21:23:36 beck Exp $ */ | 1 | /* $OpenBSD: t_req.c,v 1.26 2023/07/07 19:37:52 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -91,7 +91,6 @@ X509_REQ_print_fp(FILE *fp, X509_REQ *x) | |||
91 | BIO_free(b); | 91 | BIO_free(b); |
92 | return (ret); | 92 | return (ret); |
93 | } | 93 | } |
94 | LCRYPTO_ALIAS(X509_REQ_print_fp); | ||
95 | 94 | ||
96 | int | 95 | int |
97 | X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, | 96 | X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, |
@@ -255,11 +254,9 @@ X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, | |||
255 | X509error(ERR_R_BUF_LIB); | 254 | X509error(ERR_R_BUF_LIB); |
256 | return (0); | 255 | return (0); |
257 | } | 256 | } |
258 | LCRYPTO_ALIAS(X509_REQ_print_ex); | ||
259 | 257 | ||
260 | int | 258 | int |
261 | X509_REQ_print(BIO *bp, X509_REQ *x) | 259 | X509_REQ_print(BIO *bp, X509_REQ *x) |
262 | { | 260 | { |
263 | return X509_REQ_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); | 261 | return X509_REQ_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); |
264 | } | 262 | } |
265 | LCRYPTO_ALIAS(X509_REQ_print); | ||