diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 20:54:08 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 20:54:08 +0100 |
commit | 16b14ec76544f722ac2e95779cf9367a36402d96 (patch) | |
tree | 22c0cf5357ad736f9a3bd2bf1c73202f3ba0372b /src | |
parent | f90f51a8981031cd56c845840d887ff71f46e5ee (diff) |
Saner limit
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 3b2a366b..a2cab40e 100644 --- a/src/common/hexchat.h +++ b/src/common/hexchat.h @@ -490,7 +490,7 @@ typedef struct server char hostname[128]; /* real ip number */ char servername[128]; /* what the server says is its name */ char password[86]; - char sasluser[30]; /* this is just a buffer for network->user */ + char sasluser[32]; /* this is just a buffer for network->user */ char saslpassword[86]; /* we could reuse password but then we couldn't guarantee NickServ doesn't register first */ char nick[NICKLEN]; char linebuf[2048]; /* RFC says 512 chars including \r\n */ |