diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-28 21:00:19 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-28 21:00:19 +0000 |
commit | 02a1173a5e689bf26bb1c2942de39a80e14a37c9 (patch) | |
tree | eabca1ceef1b92dcc8dd39813cd78c23d8d6fa09 | |
parent | dece466300241cf48bb2b21a9e1c677b0f60b0ed (diff) |
Fixify
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8411 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/xline.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 193d31cf1..428ea2c16 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -688,10 +688,10 @@ XLineManager::XLineManager(InspIRCd* Instance) : ServerInstance(Instance) { } -//irtual bool Matches(const std::string &str) -//{ - //return false; -//} +bool XLine::Matches(const std::string &str) +{ + return false; +} bool KLine::Matches(User *u) { |