From 86775e2e98f55b3b88befe2daff0ca23f02f3155 Mon Sep 17 00:00:00 2001 From: danieldg Date: Wed, 2 Sep 2009 00:49:36 +0000 Subject: ModResult conversion: Change return type of all module functions git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11634 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_operinvex.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/modules/m_operinvex.cpp') diff --git a/src/modules/m_operinvex.cpp b/src/modules/m_operinvex.cpp index 5cd7ab3c6..41fc51a1d 100644 --- a/src/modules/m_operinvex.cpp +++ b/src/modules/m_operinvex.cpp @@ -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'); } -- cgit v1.2.3