]> granicus.if.org Git - neomutt/commitdiff
When generating new messages in MH folders, the initial number
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 22 Sep 1998 09:25:26 +0000 (09:25 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 22 Sep 1998 09:25:26 +0000 (09:25 +0000)
should be "1", not "2".  Fix from Gero Treuner.

mx.c

diff --git a/mx.c b/mx.c
index ca1315e1c21e87ccbe6bda278df4b59a35efbcf1..a0d70a37370db9cdfe04f484af9c92cc3e8bb799 100644 (file)
--- 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];