summaryrefslogtreecommitdiffstats
path: root/mx.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-09-22 09:25:26 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-09-22 09:25:26 +0000
commit3759da2858c9a6e80c649d99f5c8c64ca8888426 (patch)
treef547d0340d35dad273f7a6daba289a7d61304d1b /mx.c
parent0c1cd923f47ca3a44dc6d0a3743b3d2bcd87e98a (diff)
When generating new messages in MH folders, the initial number
should be "1", not "2". Fix from Gero Treuner.
Diffstat (limited to 'mx.c')
-rw-r--r--mx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mx.c b/mx.c
index ca1315e1..a0d70a37 100644
--- a/mx.c
+++ b/mx.c
@@ -963,7 +963,7 @@ int mx_sync_mailbox (CONTEXT *ctx)
int mh_open_new_message (MESSAGE *msg, CONTEXT *dest, HEADER *hdr)
{
- int hi = 1;
+ int hi = 0;
int fd, n;
char *cp;
char path[_POSIX_PATH_MAX];