diff options
| author | 2007-06-30 19:47:46 +0000 | |
|---|---|---|
| committer | 2007-06-30 19:47:46 +0000 | |
| commit | 9ec0ed03e69d3b31176f71fa1b7b68bca5b5c9f0 (patch) | |
| tree | d956c1a69c3efb7bc2158a26640ee1d6137cbc07 /src/cmd_kline.cpp | |
| parent | Fixed a bug that caused classes with passwords to instantly disconnect any us... (diff) | |
Split hostmask with XLines::IdentSplit then re-inject into check for proper detection. Thx owine.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7415 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_kline.cpp')
| -rw-r--r-- | src/cmd_kline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd_kline.cpp b/src/cmd_kline.cpp index 90ddca55c..05856893a 100644 --- a/src/cmd_kline.cpp +++ b/src/cmd_kline.cpp @@ -29,7 +29,8 @@ CmdResult cmd_kline::Handle (const char** parameters, int pcnt, userrec *user) { if (pcnt >= 3) { - if (ServerInstance->HostMatchesEveryone(parameters[0],user)) + IdentHostPair ih = ServerInstance->XLines->IdentSplit(parameters[0]); + if (ServerInstance->HostMatchesEveryone(ih.first+"@"+ih.second,user)) return CMD_FAILURE; if (!strchr(parameters[0],'@')) |
