aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd_user.cpp
diff options
context:
space:
mode:
authorGravatar w00t2007-05-11 18:20:51 +0000
committerGravatar w00t2007-05-11 18:20:51 +0000
commit0635391ceb38698a7052da0c3b599a86e255a87c (patch)
tree89ad7b8dff29e1e426f96bace6d130b59e095739 /src/cmd_user.cpp
parentOne of my XXXs done, tidy logic in here (diff)
downloadinspircd++-0635391ceb38698a7052da0c3b599a86e255a87c.tar.gz
inspircd++-0635391ceb38698a7052da0c3b599a86e255a87c.tar.bz2
inspircd++-0635391ceb38698a7052da0c3b599a86e255a87c.zip
Change the text of the 461 on invalid ident. Technically, this is correct, but nobody else respects this. Also, the numeric is the important bit, not the text. Now a little more nub friendly. :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6980 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_user.cpp')
-rw-r--r--src/cmd_user.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp
index 1a0e392c6..bdae86127 100644
--- a/src/cmd_user.cpp
+++ b/src/cmd_user.cpp
@@ -29,9 +29,7 @@ CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user)
{
if (!ServerInstance->IsIdent(parameters[0]))
{
- // This kinda Sucks, According to the RFC thou, its either this,
- // or "You have already registered" :p -- Craig
- user->WriteServ("461 %s USER :Not enough parameters",user->nick);
+ user->WriteServ("461 %s USER :Your username is not valid",user->nick);
return CMD_FAILURE;
}
else