From cc07a20aa29bfa7bf23f3cd99b97929882113328 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 6 Sep 2008 13:30:45 +0000 Subject: Nope w00t it wasnt the last :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10413 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/u_listmode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/u_listmode.h b/include/u_listmode.h index 689505c5c..390a8729b 100644 --- a/include/u_listmode.h +++ b/include/u_listmode.h @@ -523,10 +523,10 @@ class ListModeBase : public ModeHandler { if (LM->user) { - if (InspIRCd::Match(LM->user->GetFullRealHost(), it->mask) || InspIRCd::Match(LM->user->GetFullHost(), it->mask) || (InspIRCd::MatchCIDR(LM->literal, it->mask))) + if (InspIRCd::Match(LM->user->GetFullRealHost(), it->mask.substr(2)) || InspIRCd::Match(LM->user->GetFullHost(), it->mask.substr(2)) || (InspIRCd::MatchCIDR(LM->literal, it->mask.substr(2)))) return it->mask.c_str(); } - else if (InspIRCd::Match(LM->literal.substr(2), it->mask)) + else if (InspIRCd::Match(LM->literal, it->mask.substr(2))) return it->mask.c_str(); } else -- cgit v1.2.3