summaryrefslogtreecommitdiff
path: root/src/modules/m_sethost.cpp
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-26 06:15:14 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-26 06:15:14 +0000
commitee6208dc8f5bb806eca36e230ca5bbb6d5a45f60 (patch)
tree8302f402166ca2bbb7ae724042c129d1fcaa75bf /src/modules/m_sethost.cpp
parent97590f92393a62af0847728132970c38e334b687 (diff)
Added checks for empty ident/host/gecos in the chg* and set* commands. Patch by Stskeeps
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7412 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
-rw-r--r--src/modules/m_sethost.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp
index 490b63016..0719bd648 100644
--- a/src/modules/m_sethost.cpp
+++ b/src/modules/m_sethost.cpp
@@ -42,6 +42,11 @@ class cmd_sethost : public command_t
return CMD_FAILURE;
}
}
+ if (len == 0)
+ {
+ user->WriteServ("NOTICE %s :*** SETHOST: Host too short", user->nick);
+ return CMD_FAILURE;
+ }
if (len > 64)
{
user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick);