blacklist: fix precedence lossage

This commit is contained in:
Elizabeth Myers 2016-06-27 18:59:53 -05:00
parent 02e4674001
commit c47e4958e9
No known key found for this signature in database
GPG key ID: 1A10EF78D83E317B

View file

@ -324,7 +324,7 @@ lookup_all_blacklists(struct auth_client *auth)
{
struct blacklist *bl = (struct blacklist *)ptr->data;
if (!bl->delete && bl->iptype & iptype)
if (!bl->delete && (bl->iptype & iptype))
initiate_blacklist_dnsquery(bl, auth);
}