summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-12-30 18:22:52 +0000
committertb <>2023-12-30 18:22:52 +0000
commit3ea4394a2803d5bf4f4b929e780789162fe9bd6e (patch)
tree431bd2413179dac5f3ea76e4dc05b95f83a6edc8
parenta7b0607e0339002230b595932b3322da6037677e (diff)
downloadopenbsd-3ea4394a2803d5bf4f4b929e780789162fe9bd6e.tar.gz
openbsd-3ea4394a2803d5bf4f4b929e780789162fe9bd6e.tar.bz2
openbsd-3ea4394a2803d5bf4f4b929e780789162fe9bd6e.zip
One more missing void was hiding here
-rw-r--r--src/lib/libcrypto/x509/x509_issuer_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_issuer_cache.c b/src/lib/libcrypto/x509/x509_issuer_cache.c
index 87220459b3..0251cac285 100644
--- a/src/lib/libcrypto/x509/x509_issuer_cache.c
+++ b/src/lib/libcrypto/x509/x509_issuer_cache.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_issuer_cache.c,v 1.5 2023/12/30 18:06:59 tb Exp $ */ 1/* $OpenBSD: x509_issuer_cache.c,v 1.6 2023/12/30 18:22:52 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2020 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2020 Bob Beck <beck@openbsd.org>
4 * 4 *
@@ -79,7 +79,7 @@ x509_issuer_cache_set_max(size_t max)
79 * be called with x509_issuer_tree_mutex held. 79 * be called with x509_issuer_tree_mutex held.
80 */ 80 */
81void 81void
82x509_issuer_cache_free_oldest() 82x509_issuer_cache_free_oldest(void)
83{ 83{
84 struct x509_issuer *old; 84 struct x509_issuer *old;
85 85