Fix gline/kline with cloaked hostnames

This commit is contained in:
9pfs
2022-12-17 14:54:55 +01:00
committed by Alexander Barton
parent 93e36555e3
commit ea7ad914c8
+1 -1
View File
@@ -341,7 +341,7 @@ Lists_CheckReason(struct list_head *h, CLIENT *Client, char *reason, size_t len)
while (e) {
next = e->next;
if (MatchCaseInsensitive(e->mask, Client_MaskCloaked(Client))) {
if (MatchCaseInsensitive(e->mask, Client_MaskCloaked(Client)) | MatchCaseInsensitive(e->mask, Client_Mask(Client))) {
if (len && e->reason)
strlcpy(reason, e->reason, len);
if (e->onlyonce) {