blacklist: fix precedence lossage
This commit is contained in:
parent
02e4674001
commit
c47e4958e9
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ lookup_all_blacklists(struct auth_client *auth)
|
||||||
{
|
{
|
||||||
struct blacklist *bl = (struct blacklist *)ptr->data;
|
struct blacklist *bl = (struct blacklist *)ptr->data;
|
||||||
|
|
||||||
if (!bl->delete && bl->iptype & iptype)
|
if (!bl->delete && (bl->iptype & iptype))
|
||||||
initiate_blacklist_dnsquery(bl, auth);
|
initiate_blacklist_dnsquery(bl, auth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue