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_cban.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/modules/m_cban.cpp') diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index 21a3533ec..ff8e3af54 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -59,7 +59,7 @@ class cmd_cban : public command_t syntax = " [ :]"; } - void Handle(const char** parameters, int pcnt, userrec *user) + CmdResult Handle(const char** parameters, int pcnt, userrec *user) { /* syntax: CBAN #channel time :reason goes here */ /* 'time' is a human-readable timestring, like 2d3h2s. */ @@ -107,8 +107,11 @@ class cmd_cban : public command_t else { user->WriteServ( "403 %s %s :Invalid channel name", user->nick, parameters[0]); + return CMD_FAILURE; } } + + return CMD_SUCCESS; } }; -- cgit v1.3.1-10-gc9f91