From 71ad308979d9c9129507fdf85d4305fd12e18bea Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 6 Sep 2006 17:58:59 +0000 Subject: All commands now return results CMD_FAILURE or CMD_SUCCESS git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5150 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_opermotd.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/modules/m_opermotd.cpp') diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index 5d50d4192..2ab3e7dee 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -13,12 +13,12 @@ using namespace std; static FileReader* opermotd; -void ShowOperMOTD(userrec* user) +CmdResult ShowOperMOTD(userrec* user) { if(!opermotd->FileSize()) { user->WriteServ(std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing")); - return; + return CMD_FAILURE; } user->WriteServ(std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day")); for(int i=0; i != opermotd->FileSize(); i++) @@ -26,6 +26,8 @@ void ShowOperMOTD(userrec* user) user->WriteServ(std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i)); } user->WriteServ(std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD")); + + return CMD_SUCCESS; } class cmd_opermotd : public command_t @@ -37,9 +39,9 @@ class cmd_opermotd : public command_t syntax = "[]"; } - void Handle (const char** parameters, int pcnt, userrec* user) + CmdResult Handle (const char** parameters, int pcnt, userrec* user) { - ShowOperMOTD(user); + return ShowOperMOTD(user); } }; -- cgit v1.3.1-10-gc9f91