diff options
author | Viper <Viper@Anope.org> | 2010-07-13 22:11:18 +0200 |
---|---|---|
committer | Viper <Viper@Anope.org> | 2010-07-13 22:11:18 +0200 |
commit | 42dd49233c2c50506554c15fbb3fb2f730d9439f (patch) | |
tree | b6dd401d3966739124e29650af784926cade7e6d /src | |
parent | 3a422777c5b7333ffaafb46f577ffe1db9f12b94 (diff) |
Increased command buffer size. Insp 2.0 has a bigger appetite it seems..
Diffstat (limited to 'src')
-rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index f0c793f8f..7ee9f4d11 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[512]; /* Longest legal IRC command line */ + char buf[1024]; /* Most need only 512, InspIRCd 2.0 needs more though.. */ char *s; int ac; /* Parameters for the command */ char **av; |