0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

blacklist: fix precedence lossage

This commit is contained in:
Elizabeth Myers 2016-06-27 18:59:53 -05:00
parent cd38b86d3e
commit 57779d5439
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);
}