diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 12:04:38 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 12:04:38 +0000 |
commit | ab374312187b9b5ddc3c508210d4d4cd3d036982 (patch) | |
tree | 2cf2456add09635fd75eb1f30f05d2e46e1a15b8 /src | |
parent | 2a14a087c4d778562120b54d62f893faaf964313 (diff) |
Fix compile error
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9420 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_shun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index 07ad36ddb..ee10654b8 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -183,7 +183,7 @@ class ModuleShun : public Module virtual void OnUserConnect(User* user) { if (!IS_LOCAL(user)) - return 0; + return; // Apply lines on user connect XLine *rl = ServerInstance->XLines->MatchesLine("SHUN", user); |