diff options
author | Adam <Adam@anope.org> | 2010-07-25 02:37:55 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-25 02:37:55 -0400 |
commit | 49064ec67dfe684abb075305ce9433ed801eab68 (patch) | |
tree | 84c3667b8bebd023d80576908ee9b2a26b7e0d31 /src | |
parent | a9fa7edf82dbcea696654bf1c91cf634e5505ee7 (diff) |
Properly handle FMODEs from InspIRCd with more than 25 arguments.. reported by Angel-SL
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/inspircd11.c | 2 | ||||
-rw-r--r-- | src/protocol/inspircd12.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index cd2895f82..799ecb3ac 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -682,7 +682,7 @@ int anope_event_opertype(char *source, int ac, char **av) int anope_event_fmode(char *source, int ac, char **av) { - char *newav[25]; + char *newav[128]; int n, o; Channel *c; diff --git a/src/protocol/inspircd12.c b/src/protocol/inspircd12.c index 03743d2fc..b6a92231a 100644 --- a/src/protocol/inspircd12.c +++ b/src/protocol/inspircd12.c @@ -733,7 +733,7 @@ int anope_event_opertype(char *source, int ac, char **av) int anope_event_fmode(char *source, int ac, char **av) { - char *newav[25]; + char *newav[128]; int n, o; Channel *c; |