diff options
author | Patrick Griffis <tingping@tingping.se> | 2020-09-21 11:22:50 -0700 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2020-09-21 11:22:50 -0700 |
commit | 7a275812c0002fe10db5c60e29a34ba6ce4cede1 (patch) | |
tree | 74de7d00fc08c8f3947d05fd2edbd2484468f1b1 /src | |
parent | 453cb7ca79ace05f53667e523dc534bdeb7ddee0 (diff) |
Revert word array length change
It turns out that the rfc sets a limit of 15 arguments and the server (irccloud) sending that many in ISUPPORT was updated to split it into multiple lines.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/hexchat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hexchat.h b/src/common/hexchat.h index 73430f0f..f7cacfcc 100644 --- a/src/common/hexchat.h +++ b/src/common/hexchat.h @@ -75,7 +75,7 @@ #define DOMAINLEN 100 #define NICKLEN 64 /* including the NULL, so 63 really */ #define CHANLEN 300 -#define PDIWORDS 48 +#define PDIWORDS 32 #define USERNAMELEN 10 #define HIDDEN_CHAR 8 /* invisible character for xtext */ |