]> granicus.if.org Git - mutt/commitdiff
rename mbox_close_mailbox to mx_close_mailbox_append and move it
authorDamien Riegel <damien.riegel@gmail.com>
Thu, 12 May 2016 19:41:01 +0000 (12:41 -0700)
committerDamien Riegel <damien.riegel@gmail.com>
Thu, 12 May 2016 19:41:01 +0000 (12:41 -0700)
mbox_close_mailbox was used as the counterpart of
mx_open_mailbox_append. To make things clearer, rename it
mx_close_mailbox_append.

As it is only used in mx.c, move it there and make it static.

mbox.c
mx.c
mx.h

diff --git a/mbox.c b/mbox.c
index 74f45d53e498d6f645bf8f6e2ec0ac57f97cffca..83c9cd87478ae061aaabcb40a7e10b5234448d4b 100644 (file)
--- a/mbox.c
+++ b/mbox.c
@@ -1069,15 +1069,6 @@ bail:  /* Come here in case of disaster */
   return rc;
 }
 
-/* close a mailbox opened in write-mode */
-int mbox_close_mailbox (CONTEXT *ctx)
-{
-  mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
-  mutt_unblock_signals ();
-  mx_fastclose_mailbox (ctx);
-  return 0;
-}
-
 int mutt_reopen_mailbox (CONTEXT *ctx, int *index_hint)
 {
   int (*cmp_headers) (const HEADER *, const HEADER *) = NULL;
diff --git a/mx.c b/mx.c
index 086660ab57c92bf27e53339285f99e694ea3c8e0..3f47932d3d67c32144bb2613c3872415d9eb43d9 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -572,6 +572,15 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags)
   return 0;
 }
 
+/* close a mailbox opened in write-mode */
+static int mx_close_mailbox_append (CONTEXT *ctx)
+{
+  mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
+  mutt_unblock_signals ();
+  mx_fastclose_mailbox (ctx);
+  return 0;
+}
+
 /*
  * open a mailbox and parse it
  *
@@ -801,7 +810,7 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
   {
     /* mailbox was opened in write-mode */
     if (ctx->magic == MUTT_MBOX || ctx->magic == MUTT_MMDF)
-      mbox_close_mailbox (ctx);
+      mx_close_mailbox_append (ctx);
     else
       mx_fastclose_mailbox (ctx);
     return 0;
diff --git a/mx.h b/mx.h
index a4ac2b229211324275941440126e968e4135e3fd..18562df47d13478d8af9a581c75c23ab92ea4603 100644 (file)
--- a/mx.h
+++ b/mx.h
@@ -46,7 +46,6 @@ WHERE short DefaultMagic INITVAL (MUTT_MBOX);
 int mbox_sync_mailbox (CONTEXT *, int *);
 int mbox_open_mailbox (CONTEXT *);
 int mbox_check_mailbox (CONTEXT *, int *);
-int mbox_close_mailbox (CONTEXT *);
 int mbox_lock_mailbox (CONTEXT *, int, int);
 int mbox_parse_mailbox (CONTEXT *);
 int mmdf_parse_mailbox (CONTEXT *);