]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_connect.cpp
Fix total mess of makefile dependency macros (all depending on stuff they dont NEED...
[user/henk/code/inspircd.git] / src / commands / cmd_connect.cpp
index 7eb909c109756f7c3045fca74aa904f74fd567f0..0aed872e97a3e86fbfa981428e940ad279f82faf 100644 (file)
@@ -25,8 +25,8 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
 
 /** Handle /CONNECT
  */
-CmdResult CommandConnect::Handle (const char**, int, User *user)
+CmdResult CommandConnect::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_SUCCESS;
 }