diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-07-07 13:40:30 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-07-07 13:40:30 +0200 |
commit | 3ac4e6956d4ec4c976aef19772b65e7108d6315a (patch) | |
tree | 1b38fff98926f524a20ace937d751f8e419223ba /src/modules/m_chgname.cpp | |
parent | f1094b52ae429f0e2880f3bbd4f1c6bfe22bb326 (diff) |
m_setname, m_chgname Disallow empty GECOS, spotted by @Robby-
Diffstat (limited to 'src/modules/m_chgname.cpp')
-rw-r--r-- | src/modules/m_chgname.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index 194ecf80e..667ddd928 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -44,6 +44,12 @@ 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()); |