Merge pull request #1039 from Daxtorim/fix/domain-filtering

Don't display unrelated blocked CNAME queries when filtering for specific domain
This commit is contained in:
DL6ER
2021-01-24 09:31:07 +01:00
committed by GitHub
+1 -1
View File
@@ -914,7 +914,7 @@ void getAllQueries(const char *client_message, const int *sock)
// If the domain of this query did not match, the CNAME
// domain may still match - we have to check it in
// addition if this query is of CNAME blocked type
else if(query->CNAME_domainID > -1)
else if(query->CNAME_domainID == domainid)
{
// Get this query
}