X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_close.cpp;h=1746508df1fe5e028f1712d958e72362de96b00f;hb=495ea4be05859f46cbf99c10541210fa3590f01a;hp=fb4b0368286d5a109720f331369a4dbd61b463ce;hpb=1eb52771d6a7fe8768baf8bad509de0facafbd2c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_close.cpp b/src/modules/m_close.cpp index fb4b03682..1746508df 100644 --- a/src/modules/m_close.cpp +++ b/src/modules/m_close.cpp @@ -1,8 +1,18 @@ /* +------------------------------------+ - * | UnrealIRCd v4.0 | + * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * UnrealIRCd 4.0 (C) 2008 Carsten Valdemar Munk + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + * + * Based on the UnrealIRCd 4.0 (1.1.x fork) module + * + * UnrealIRCd 4.0 (C) 2007 Carsten Valdemar Munk * This program is free but copyrighted software; see * the file COPYING for details. * @@ -41,14 +51,14 @@ class CommandClose : public Command int total = 0; for (std::map::iterator ci = closed.begin(); ci != closed.end(); ci++) { - user->WriteServ("NOTICE %s :*** Closed %d unknown connection%s from [%s]",user->nick,(*ci).second,((*ci).second>1)?"s":"",(*ci).first.c_str()); + user->WriteServ("NOTICE %s :*** Closed %d unknown connection%s from [%s]",user->nick.c_str(),(*ci).second,((*ci).second>1)?"s":"",(*ci).first.c_str()); total += (*ci).second; } if (total) - user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick,total,(total>1)?"s":""); + user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick.c_str(),total,(total>1)?"s":""); else - user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick); - + user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick.c_str()); + return CMD_LOCALONLY; } }; @@ -72,7 +82,7 @@ class ModuleClose : public Module virtual Version GetVersion() { - return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION); + return Version("$Id$", VF_VENDOR, API_VERSION); } };