summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-08 09:16:14 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-08 09:16:14 +0000
commit02df4f4d0773503e2a1710cd3992131b8fefbcf6 (patch)
tree3bc1e85026c5a716961a47e8d3e6c5ad67279f66 /src
parent7187e12fb0af91f78ac2802e1b72008bbf985ccc (diff)
Potential fix for CS Testnet bug, thanks to Special for helping with this one.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3133 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/channels.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 4c6634a16..558356371 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -581,7 +581,7 @@ void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason)
log(DEBUG,"kick_channel: removing: %s %s %s",user->nick,Ptr->name,src->nick);
- if (IS_LOCAL(user))
+ if (IS_LOCAL(src))
{
if (!has_channel(user,Ptr))
{