summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/messages.c2
-rw-r--r--utils/messages.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/messages.c b/utils/messages.c
index ae81ad467..4d07a47ef 100644
--- a/utils/messages.c
+++ b/utils/messages.c
@@ -24,7 +24,7 @@
#define HASH_SIZE 77
/** Maximum length of a key. */
-#define MAX_KEY_LENGTH 16
+#define MAX_KEY_LENGTH 24
/** Entry in the messages hash table. */
struct messages_entry {
diff --git a/utils/messages.h b/utils/messages.h
index bef380edc..4ca079293 100644
--- a/utils/messages.h
+++ b/utils/messages.h
@@ -14,7 +14,7 @@
* messages_load() to read the file into memory. To lookup a key, use
* messages_get("key").
*
- * Only the first MAX_KEY_LENGTH (currently 16) characters of the key are
+ * Only the first MAX_KEY_LENGTH (currently 24) characters of the key are
* significant.
*/