]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgname.cpp
wrong order of arguments to Host()
[user/henk/code/inspircd.git] / src / modules / m_chgname.cpp
index 194ecf80eacb375007f5a6451e673c743ee7ef21..2ac24c5d512bc2e90a3bb8da332a5e8b95a4c4ae 100644 (file)
@@ -44,16 +44,22 @@ class CommandChgname : public Command
                        return CMD_FAILURE;
                }
 
+               if (parameters[1].empty())
+               {
+                       user->WriteServ("NOTICE %s :*** CHGNAME: GECOS must be specified", user->nick.c_str());
+                       return CMD_FAILURE;
+               }
+
                if (parameters[1].length() > ServerInstance->Config->Limits.MaxGecos)
                {
-                       user->WriteServ("NOTICE %s :*** GECOS too long", user->nick.c_str());
+                       user->WriteServ("NOTICE %s :*** CHGNAME: GECOS too long", user->nick.c_str());
                        return CMD_FAILURE;
                }
 
                if (IS_LOCAL(dest))
                {
                        dest->ChangeName(parameters[1].c_str());
-                       ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's real name to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str());
+                       ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's GECOS to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str());
                }
 
                return CMD_SUCCESS;