From f428fe870d78bf90e27e0124e24f05c06e7ded58 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 28 Oct 2007 19:26:22 +0000 Subject: Done my part git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8404 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/xline.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/xline.cpp b/src/xline.cpp index eca06b06d..537b86596 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -689,12 +689,13 @@ bool ELine::Matches(User *u) bool ZLine::Matches(User *u) { - return false; + if (match(user->GetIPString(), this->ipaddr, true)) + return true; + else + return false; } bool QLine::Matches(User *u) { return false; } - - -- cgit v1.2.3