]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_squit.cpp
Make xline expiry messages a bit clearer that the xline may have expired a while...
[user/henk/code/inspircd.git] / src / commands / cmd_squit.cpp
index 61d0a601de638a2c38e49059a3fa67a740d45114..bb7ca6241e80921038c244a0c995374986700879 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -26,6 +26,6 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
 
 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;
 }