]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Fix excessive snomask sending on fitler add/removal
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 75156378dc8b2defd3e6d6ba24dc8fe5b7f17bbc..b70939ca2b4a43f2efa770d80a27af7758a25409 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  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.
@@ -20,7 +20,7 @@
 class CommandSetname : public Command
 {
  public:
-       CommandSetname (InspIRCd* Instance) : Command(Instance,"SETNAME", 0, 1)
+       CommandSetname (InspIRCd* Instance) : Command(Instance,"SETNAME", 0, 1, 1)
        {
                this->source = "m_setname.so";
                syntax = "<new-gecos>";
@@ -31,23 +31,23 @@ class CommandSetname : public Command
        {
                if (parameters.size() == 0)
                {
-                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick);
+                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick.c_str());
                        return CMD_FAILURE;
                }
-               
-               if (parameters[0].size() > MAXGECOS)
+
+               if (parameters[0].size() > ServerInstance->Config->Limits.MaxGecos)
                {
-                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick);
+                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick.c_str());
                        return CMD_FAILURE;
                }
-               
+
                if (user->ChangeName(parameters[0].c_str()))
                {
-                       ServerInstance->SNO->WriteToSnoMask('A', "%s used SETNAME to change their GECOS to %s", user->nick, parameters[0].c_str());
+                       ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their GECOS to %s", user->nick.c_str(), parameters[0].c_str());
                        return CMD_SUCCESS;
                }
 
-               return CMD_SUCCESS;
+               return CMD_LOCALONLY;
        }
 };
 
@@ -59,21 +59,20 @@ class ModuleSetName : public Module
        ModuleSetName(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                mycommand = new CommandSetname(ServerInstance);
                ServerInstance->AddCommand(mycommand);
 
        }
-       
+
        virtual ~ModuleSetName()
        {
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_VENDOR, API_VERSION);
        }
-       
 };
 
 MODULE_INIT(ModuleSetName)