]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_squit.cpp
Fix total mess of makefile dependency macros (all depending on stuff they dont NEED...
[user/henk/code/inspircd.git] / src / commands / cmd_squit.cpp
index e98790380e66a9402821aa99a1740f65a76388b3..2fd5c701c26db173724b11ab5a515e103316641e 100644 (file)
@@ -24,8 +24,8 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
        return new CommandSquit(Instance);
 }
 
-CmdResult CommandSquit::Handle (const char* const*, int, User *user)
+CmdResult CommandSquit::Handle (const std::vector<std::string>&, User *user)
 {
-       user->WriteServ( "NOTICE %s :Look into loading a linking module (like m_spanningtree) if you want this to do anything useful.", user->nick);
+       user->WriteServ( "NOTICE %s :Look into loading a linking module (like m_spanningtree) if you want this to do anything useful.", user->nick.c_str());
        return CMD_FAILURE;
 }