]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operinvex.cpp
Fix memory leak and invalid vtable location on unload of m_sslinfo
[user/henk/code/inspircd.git] / src / modules / m_operinvex.cpp
index 1952d4296e94d699844ec9f089c36d9eb9c03f0f..41fc51a1dd67c66a800f733330d27a46945eb8a6 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -37,10 +37,10 @@ class ModuleOperInvex : public Module
                return Version("$Id$", VF_COMMON|VF_VENDOR, API_VERSION);
        }
 
-       virtual int OnCheckInvite(User *user, Channel *c)
+       virtual ModResult OnCheckInvite(User *user, Channel *c)
        {
                if (!IS_LOCAL(user) || !IS_OPER(user))
-                       return 0;
+                       return MOD_RES_PASSTHRU;
 
                Module* ExceptionModule = ServerInstance->Modules->Find("m_inviteexception.so");
                if (ExceptionModule)
@@ -48,17 +48,17 @@ class ModuleOperInvex : public Module
                        if (ListModeRequest(this, ExceptionModule, user->oper, 'O', c).Send())
                        {
                                // Oper type is exempt
-                               return 1;
+                               return MOD_RES_DENY;
                        }
                }
 
-               return 0;
+               return MOD_RES_PASSTHRU;
        }
 
-       virtual int OnCheckBan(User *user, Channel *c)
+       virtual ModResult OnCheckBan(User *user, Channel *c)
        {
                if (!IS_OPER(user))
-                       return 0;
+                       return MOD_RES_PASSTHRU;
                return c->GetExtBanStatus(user->oper, 'O');
        }