X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcommands%2Fcmd_connect.cpp;h=0aed872e97a3e86fbfa981428e940ad279f82faf;hb=2d4a319d961e3f9e6aa9f7926f9ed320d72de8da;hp=81340c37a2c742ba9bb234a7212aa778a66469bc;hpb=ffbd1eebf0b82bf40482879f410f58874030a695;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/commands/cmd_connect.cpp b/src/commands/cmd_connect.cpp index 81340c37a..0aed872e9 100644 --- a/src/commands/cmd_connect.cpp +++ b/src/commands/cmd_connect.cpp @@ -27,6 +27,6 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) */ CmdResult CommandConnect::Handle (const std::vector&, 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; }