summaryrefslogtreecommitdiffstats
path: root/mbox.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 /mbox.c
parentf300af76bad8ee46e4831b10292fd1cbc4a9e560 (diff)
Adjust some hash-related parameters.
Diffstat (limited to 'mbox.c')
-rw-r--r--mbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbox.c b/mbox.c
index 9a528f39..ea4c88bb 100644
--- a/mbox.c
+++ b/mbox.c
@@ -1047,8 +1047,8 @@ int mutt_reopen_mailbox (CONTEXT *ctx, int *index_hint)
ctx->unread = 0;
ctx->flagged = 0;
ctx->changed = 0;
- ctx->id_hash = hash_create (257);
- ctx->subj_hash = hash_create (257);
+ ctx->id_hash = hash_create (1031);
+ ctx->subj_hash = hash_create (1031);
switch (ctx->magic)
{