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/x_val.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/x_val.c')
-rw-r--r-- | src/lib/libcrypto/asn1/x_val.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/asn1/x_val.c b/src/lib/libcrypto/asn1/x_val.c index 83c4823e26..a9c9c481e0 100644 --- a/src/lib/libcrypto/asn1/x_val.c +++ b/src/lib/libcrypto/asn1/x_val.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x_val.c,v 1.12 2023/07/05 21:23:37 beck Exp $ */ | 1 | /* $OpenBSD: x_val.c,v 1.13 2023/07/07 19:37:53 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 | * |
@@ -90,25 +90,21 @@ d2i_X509_VAL(X509_VAL **a, const unsigned char **in, long len) | |||
90 | return (X509_VAL *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, | 90 | return (X509_VAL *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, |
91 | &X509_VAL_it); | 91 | &X509_VAL_it); |
92 | } | 92 | } |
93 | LCRYPTO_ALIAS(d2i_X509_VAL); | ||
94 | 93 | ||
95 | int | 94 | int |
96 | i2d_X509_VAL(X509_VAL *a, unsigned char **out) | 95 | i2d_X509_VAL(X509_VAL *a, unsigned char **out) |
97 | { | 96 | { |
98 | return ASN1_item_i2d((ASN1_VALUE *)a, out, &X509_VAL_it); | 97 | return ASN1_item_i2d((ASN1_VALUE *)a, out, &X509_VAL_it); |
99 | } | 98 | } |
100 | LCRYPTO_ALIAS(i2d_X509_VAL); | ||
101 | 99 | ||
102 | X509_VAL * | 100 | X509_VAL * |
103 | X509_VAL_new(void) | 101 | X509_VAL_new(void) |
104 | { | 102 | { |
105 | return (X509_VAL *)ASN1_item_new(&X509_VAL_it); | 103 | return (X509_VAL *)ASN1_item_new(&X509_VAL_it); |
106 | } | 104 | } |
107 | LCRYPTO_ALIAS(X509_VAL_new); | ||
108 | 105 | ||
109 | void | 106 | void |
110 | X509_VAL_free(X509_VAL *a) | 107 | X509_VAL_free(X509_VAL *a) |
111 | { | 108 | { |
112 | ASN1_item_free((ASN1_VALUE *)a, &X509_VAL_it); | 109 | ASN1_item_free((ASN1_VALUE *)a, &X509_VAL_it); |
113 | } | 110 | } |
114 | LCRYPTO_ALIAS(X509_VAL_free); | ||