From 89a8dff5f6853794364bc06ec04d05c6d988e4e2 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 19 May 2008 00:22:58 +0000 Subject: These done git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9758 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_setidle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_setidle.cpp') diff --git a/src/modules/m_setidle.cpp b/src/modules/m_setidle.cpp index ce191910a..89e8c9a17 100644 --- a/src/modules/m_setidle.cpp +++ b/src/modules/m_setidle.cpp @@ -32,7 +32,7 @@ class CommandSetidle : public Command time_t idle = ServerInstance->Duration(parameters[0]); if (idle < 1) { - user->WriteNumeric(948, "%s :Invalid idle time.",user->nick); + user->WriteNumeric(948, "%s :Invalid idle time.",user->nick.c_str()); return CMD_FAILURE; } user->idle_lastmsg = (ServerInstance->Time() - idle); @@ -40,7 +40,7 @@ class CommandSetidle : public Command if (user->signon > user->idle_lastmsg) user->signon = user->idle_lastmsg; ServerInstance->SNO->WriteToSnoMask('A', std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds"); - user->WriteNumeric(944, "%s :Idle time set.",user->nick); + user->WriteNumeric(944, "%s :Idle time set.",user->nick.c_str()); return CMD_LOCALONLY; } -- cgit v1.2.3