1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 22:13:12 +02:00

Accommodate for the InspIRCd 2.0 protocol being even more oversized then we previously thought..

This commit is contained in:
Viper
2010-08-04 00:44:06 +02:00
parent 388fe38d00
commit 951de6b39d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -309,7 +309,7 @@ void process()
Message *current = NULL;
char source[64];
char cmd[64];
char buf[1024]; /* Most need only 512, InspIRCd 2.0 needs more though.. */
char buf[4096]; /* Most need only 512, InspIRCd 2.0 is seriously oversized though.. */
char *s;
int ac; /* Parameters for the command */
char **av;