summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-27 01:31:49 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-27 01:31:49 +0000
commit85730cbc570b2671a45fc4e197c96e05a1d40288 (patch)
treefbc906e5e3040478102dcbc3f06ac3a69a92ad33 /src/commands.cpp
parent55a959dbc797fcc74661c57ce4753809cf392e9e (diff)
RPL_WHOLIMEXCEEDED -> 523 to match bahamut
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1535 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index 7e3a7f09b..bf95d24c9 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -991,7 +991,7 @@ void handle_who(char **parameters, int pcnt, userrec *user)
n_list++;
if (n_list > MaxWhoResults)
{
- WriteServ(user->fd,"557 %s WHO :Command aborted: More results than configured limit",user->nick);
+ WriteServ(user->fd,"523 %s WHO :Command aborted: More results than configured limit",user->nick);
break;
}
}
@@ -1030,7 +1030,7 @@ void handle_who(char **parameters, int pcnt, userrec *user)
n_list++;
if (n_list > MaxWhoResults)
{
- WriteServ(user->fd,"557 %s WHO :Command aborted: More results than configured limit",user->nick);
+ WriteServ(user->fd,"523 %s WHO :Command aborted: More results than configured limit",user->nick);
break;
}