diff options
| author | 2006-09-06 17:21:59 +0000 | |
|---|---|---|
| committer | 2006-09-06 17:21:59 +0000 | |
| commit | 4cf0ae1308fe98757de42ffbe391e61844ac9e0a (patch) | |
| tree | 76cf38a7afd4d31b6345561442bdee4692c5a847 /src/cmd_server.cpp | |
| parent | JOIN now has a TS parameter on it. The client protocol will ignore this when ... (diff) | |
Command result codes. This isnt finished yet, still got to do most of the modules, and alter CallCommandHandler
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5149 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_server.cpp')
| -rw-r--r-- | src/cmd_server.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd_server.cpp b/src/cmd_server.cpp index b1f9a89d8..8ec65f681 100644 --- a/src/cmd_server.cpp +++ b/src/cmd_server.cpp @@ -25,8 +25,9 @@ extern "C" command_t* init_command(InspIRCd* Instance) return new cmd_server(Instance); } -void cmd_server::Handle (const char** parameters, int pcnt, userrec *user) +CmdResult cmd_server::Handle (const char** parameters, int pcnt, userrec *user) { user->WriteServ("666 %s :You cannot identify as a server, you are a USER. IRC Operators informed.",user->nick); ServerInstance->WriteOpers("*** WARNING: %s attempted to issue a SERVER command and is registered as a user!",user->nick); + return CMD_FAILURE; } |
