Commit Diff
- Commit:
be887070273c47a07c9bf488630f6fb707976f67
- From:
- Alexander Barton <alex@barton.de>
- Date:
- Message:
- Match list patterns case-insensitive The invite-, ban-, and except lists are affected by this change, as well as G-Lines an K-Lines. Problem pointed out by "wowaname" on #ngircd, thanks!
- Actions:
- Patch | Tree
--- src/ngircd/lists.c +++ src/ngircd/lists.c @@ -326,7 +326,7 @@ Lists_CheckReason(struct list_head *h, CLIENT *Client, while (e) { next = e->next; - if (Match(e->mask, Client_MaskCloaked(Client))) { + if (MatchCaseInsensitive(e->mask, Client_MaskCloaked(Client))) { if (len && e->reason) strlcpy(reason, e->reason, len); if (e->valid_until == 1) {