summaryrefslogtreecommitdiff
path: root/src/cmd_invite.cpp
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-26 04:43:06 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-26 04:43:06 +0000
commited6b9c90fe69d9745e55450addaa009ecf1d94be (patch)
treeceaf5e398a3499cceba638c4da785f7f45c111b5 /src/cmd_invite.cpp
parent9ae7cd7bf378ded4c09814ca13b36dd5302f9d06 (diff)
Make numeric 443 ERR_USERONCHANNEL conform to the RFC
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5799 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_invite.cpp')
-rw-r--r--src/cmd_invite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_invite.cpp b/src/cmd_invite.cpp
index ccac0df7b..2458134f3 100644
--- a/src/cmd_invite.cpp
+++ b/src/cmd_invite.cpp
@@ -60,7 +60,7 @@ CmdResult cmd_invite::Handle (const char** parameters, int pcnt, userrec *user)
if (c->HasUser(u))
{
- user->WriteServ("443 %s %s %s :Is already on channel %s",user->nick,u->nick,c->name,c->name);
+ user->WriteServ("443 %s %s %s :is already on channel",user->nick,u->nick,c->name);
return CMD_FAILURE;
}