diff options
author | Viper <Viper@Anope.org> | 2010-08-04 00:44:06 +0200 |
---|---|---|
committer | Viper <Viper@Anope.org> | 2010-08-04 00:44:06 +0200 |
commit | 951de6b39d677c57fa995b14c53e2f7635dd5329 (patch) | |
tree | f75d08a0ac75c68ab4d8403439253b1de6eebe62 | |
parent | 388fe38d005cdec9c5cab6b90c027ab32b31e857 (diff) |
Accommodate for the InspIRCd 2.0 protocol being even more oversized then we previously thought..
-rw-r--r-- | src/process.c | 2 | ||||
-rw-r--r-- | version.log | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 7ee9f4d11..4423f8cfa 100644 --- a/src/process.c +++ b/src/process.c @@ -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; diff --git a/version.log b/version.log index 42a44349b..2a708ac32 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="4" VERSION_EXTRA="-git" -VERSION_BUILD="3017" +VERSION_BUILD="3018" # $Log$ # Changes since the 1.8.4 Release +#Revision 3018 - Accommodate for the InspIRCd 2.0 protocol being even more oversized then we previously thought.. #Revision 3017 - Log out super admins when someone forces them to logout #Revision 3016 - Fixed a potential crash from receiving a very long FMODE from InspIRCd #Revision 3015 - Allow clearing of access lists while in XOP mode |