summaryrefslogtreecommitdiff
path: root/ot_accesslist.c
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2026-09-10 01:48:42 +0200
committerDirk Engling <erdgeist@erdgeist.org>2026-09-10 01:48:42 +0200
commite51780b5bdac4e667fa1945bfa6085b7dcd940ae (patch)
treef802bff2020b9e814e3d61a3047137d8941e17e9 /ot_accesslist.c
parent1c7fac4cc23801ac81a2abd7d3110683831c4811 (diff)
Fix typo in accesslist_hashisvalid, thanks to sHEADmaster
Diffstat (limited to 'ot_accesslist.c')
-rw-r--r--ot_accesslist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_accesslist.c b/ot_accesslist.c
index f1bb885..8e9afdc 100644
--- a/ot_accesslist.c
+++ b/ot_accesslist.c
@@ -197,7 +197,7 @@ int accesslist_hashisvalid(ot_hash hash) {
197 197
198 /* If we found a matching hash on the main list, scan the list of dynamically deleted hashes */ 198 /* If we found a matching hash on the main list, scan the list of dynamically deleted hashes */
199 accesslist_delete = g_accesslist_delete; 199 accesslist_delete = g_accesslist_delete;
200 if ((exactmatch != NULL) && accesslist_delete && bsearch(hash, accesslist_add->list, accesslist_add->size, OT_HASH_COMPARE_SIZE, vector_compare_hash)) 200 if ((exactmatch != NULL) && accesslist_delete && bsearch(hash, accesslist_delete->list, accesslist_delete->size, OT_HASH_COMPARE_SIZE, vector_compare_hash))
201 exactmatch = NULL; 201 exactmatch = NULL;
202#endif 202#endif
203 203