summaryrefslogtreecommitdiffstats
path: root/mx.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-12-21 12:38:53 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-12-21 12:38:53 +0000
commit877552c07fce7f76bdf582d5b2d3a9d44c6876a9 (patch)
treef0575a9a80366be6e9abb0a0347e26611ca3fd1a /mx.c
parentf300af76bad8ee46e4831b10292fd1cbc4a9e560 (diff)
Adjust some hash-related parameters.
Diffstat (limited to 'mx.c')
-rw-r--r--mx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mx.c b/mx.c
index e74a8cad..f37dae1c 100644
--- a/mx.c
+++ b/mx.c
@@ -582,8 +582,8 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
set_option (OPTFORCEREFRESH);
/* create hash tables */
- ctx->id_hash = hash_create (257);
- ctx->subj_hash = hash_create (257);
+ ctx->id_hash = hash_create (1031);
+ ctx->subj_hash = hash_create (1031);
if (!ctx->quiet)
mutt_message (_("Reading %s..."), ctx->path);