From: Attila Molnar Date: Thu, 16 Apr 2015 20:50:06 +0000 (+0200) Subject: Revert c8b344ea748d62d9f37cacd4dd785f15b186725c to fix regression X-Git-Tag: v2.0.23~64 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=c490a9061f18eceb69eb4bb5ed9eb32fd90400fe;p=user%2Fhenk%2Fcode%2Finspircd.git Revert c8b344ea748d62d9f37cacd4dd785f15b186725c to fix regression Fixes issue #989 reported by @B00mX0r --- diff --git a/src/xline.cpp b/src/xline.cpp index b710c5c43..66d24f439 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -598,6 +598,9 @@ void GLine::Apply(User* u) bool ELine::Matches(User *u) { + if (u->exempt) + return false; + if (InspIRCd::Match(u->ident, this->identmask, ascii_case_insensitive_map)) { if (InspIRCd::MatchCIDR(u->host, this->hostmask, ascii_case_insensitive_map) ||