summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/pcy_tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/pcy_tree.c')
-rw-r--r--src/lib/libcrypto/x509/pcy_tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/pcy_tree.c b/src/lib/libcrypto/x509/pcy_tree.c
index 284c08e66a..1df37c8776 100644
--- a/src/lib/libcrypto/x509/pcy_tree.c
+++ b/src/lib/libcrypto/x509/pcy_tree.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: pcy_tree.c,v 1.2 2021/11/01 20:53:08 tb Exp $ */ 1/* $OpenBSD: pcy_tree.c,v 1.3 2022/11/14 17:48:49 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 2004. 3 * project 2004.
4 */ 4 */
@@ -657,6 +657,7 @@ X509_policy_tree_free(X509_POLICY_TREE *tree)
657 free(tree->levels); 657 free(tree->levels);
658 free(tree); 658 free(tree);
659} 659}
660LCRYPTO_ALIAS(X509_policy_tree_free)
660 661
661/* Application policy checking function. 662/* Application policy checking function.
662 * Return codes: 663 * Return codes:
@@ -769,3 +770,4 @@ error:
769 770
770 return 0; 771 return 0;
771} 772}
773LCRYPTO_ALIAS(X509_policy_check)