diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-11-11 00:32:55 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:19 +0000 |
commit | 00043d33bad26cedbfa105269ae2b1b66684b721 (patch) | |
tree | d6c278a6ec8132ef6ae5ef8f7b5ac4e4cba4081e | |
parent | 12597e9f3f4c7e4dd2946a14efae0af081b2e876 (diff) |
* Reduce the size of MAX_FEATLABEL_CHARS because it's bloating up servercache.dat and general serverlist memory usage for no reason (thanks Oopss)
-rw-r--r-- | src/client/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/client.h b/src/client/client.h index 4d5cd522..1e18a9ad 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -285,7 +285,7 @@ typedef struct { char info[MAX_INFO_STRING]; } ping_t; -#define MAX_FEATLABEL_CHARS 1024 +#define MAX_FEATLABEL_CHARS 32 typedef struct { netadr_t adr; char hostName[MAX_HOSTNAME_LENGTH]; |