From 3759da2858c9a6e80c649d99f5c8c64ca8888426 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 22 Sep 1998 09:25:26 +0000 Subject: [PATCH] When generating new messages in MH folders, the initial number should be "1", not "2". Fix from Gero Treuner. --- mx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.40.0