summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2009-11-11 00:32:55 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:19 +0000
commit00043d33bad26cedbfa105269ae2b1b66684b721 (patch)
treed6c278a6ec8132ef6ae5ef8f7b5ac4e4cba4081e
parent12597e9f3f4c7e4dd2946a14efae0af081b2e876 (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.h2
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];