summaryrefslogtreecommitdiff
path: root/ot_accesslist.c
diff options
context:
space:
mode:
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 921bde3..3154e7f 100644
--- a/ot_accesslist.c
+++ b/ot_accesslist.c
@@ -119,7 +119,7 @@ int accesslist_hashisvalid( ot_hash hash ) {
119 void * exactmatch = NULL; 119 void * exactmatch = NULL;
120 120
121 if (accesslist) 121 if (accesslist)
122 bsearch( hash, accesslist->list, accesslist->size, OT_HASH_COMPARE_SIZE, vector_compare_hash ); 122 exactmatch = bsearch( hash, accesslist->list, accesslist->size, OT_HASH_COMPARE_SIZE, vector_compare_hash );
123 123
124#ifdef WANT_ACCESSLIST_BLACK 124#ifdef WANT_ACCESSLIST_BLACK
125 return exactmatch == NULL; 125 return exactmatch == NULL;