diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-08 09:16:14 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-08 09:16:14 +0000 |
commit | 02df4f4d0773503e2a1710cd3992131b8fefbcf6 (patch) | |
tree | 3bc1e85026c5a716961a47e8d3e6c5ad67279f66 | |
parent | 7187e12fb0af91f78ac2802e1b72008bbf985ccc (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
-rw-r--r-- | src/channels.cpp | 2 |
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)) { |