From: Thomas Roessler Date: Tue, 22 Sep 1998 09:25:26 +0000 (+0000) Subject: When generating new messages in MH folders, the initial number X-Git-Tag: mutt-0-94-8i-rel~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3759da2858c9a6e80c649d99f5c8c64ca8888426;p=mutt When generating new messages in MH folders, the initial number should be "1", not "2". Fix from Gero Treuner. --- 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];