diff options
author | beck <> | 2022-11-14 17:48:50 +0000 |
---|---|---|
committer | beck <> | 2022-11-14 17:48:50 +0000 |
commit | 109899f1b36632f5f1c469c4f562df69585eb21e (patch) | |
tree | c42f727f8848b4a56e738422f26e8b44150174e4 /src/lib/libcrypto/x509/x509_pcons.c | |
parent | fd2db7678bc81cd8abe106c7bd1c724c8b01888d (diff) | |
download | openbsd-109899f1b36632f5f1c469c4f562df69585eb21e.tar.gz openbsd-109899f1b36632f5f1c469c4f562df69585eb21e.tar.bz2 openbsd-109899f1b36632f5f1c469c4f562df69585eb21e.zip |
Hide public symbols in libcrypto/x509 .c files
ok tb@
Diffstat (limited to 'src/lib/libcrypto/x509/x509_pcons.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509_pcons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_pcons.c b/src/lib/libcrypto/x509/x509_pcons.c index 69bf43377f..2448147fdb 100644 --- a/src/lib/libcrypto/x509/x509_pcons.c +++ b/src/lib/libcrypto/x509/x509_pcons.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_pcons.c,v 1.1 2020/06/04 15:19:32 jsing Exp $ */ | 1 | /* $OpenBSD: x509_pcons.c,v 1.2 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. | 3 | * project. |
4 | */ | 4 | */ |
@@ -121,12 +121,14 @@ POLICY_CONSTRAINTS_new(void) | |||
121 | { | 121 | { |
122 | return (POLICY_CONSTRAINTS*)ASN1_item_new(&POLICY_CONSTRAINTS_it); | 122 | return (POLICY_CONSTRAINTS*)ASN1_item_new(&POLICY_CONSTRAINTS_it); |
123 | } | 123 | } |
124 | LCRYPTO_ALIAS(POLICY_CONSTRAINTS_new) | ||
124 | 125 | ||
125 | void | 126 | void |
126 | POLICY_CONSTRAINTS_free(POLICY_CONSTRAINTS *a) | 127 | POLICY_CONSTRAINTS_free(POLICY_CONSTRAINTS *a) |
127 | { | 128 | { |
128 | ASN1_item_free((ASN1_VALUE *)a, &POLICY_CONSTRAINTS_it); | 129 | ASN1_item_free((ASN1_VALUE *)a, &POLICY_CONSTRAINTS_it); |
129 | } | 130 | } |
131 | LCRYPTO_ALIAS(POLICY_CONSTRAINTS_free) | ||
130 | 132 | ||
131 | static STACK_OF(CONF_VALUE) * | 133 | static STACK_OF(CONF_VALUE) * |
132 | i2v_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a, | 134 | i2v_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a, |