]> granicus.if.org Git - neomutt/commitdiff
maildir: remove unnecessary function
authorRichard Russon <rich@flatcap.org>
Thu, 21 Mar 2019 15:47:08 +0000 (15:47 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 21 Mar 2019 20:39:37 +0000 (20:39 +0000)
maildir/maildir.c

index e6cf8ddadacdd44db404e9b46bcaeb57c5c00675..d48a67bc6a0e32c838cb18c0bd6137a7194f4c96 100644 (file)
@@ -147,22 +147,6 @@ cleanup:
   mutt_buffer_pool_release(&msgpath);
 }
 
-/**
- * maildir_read_dir - Read a Maildir style mailbox
- * @param m   Mailbox
- * @retval  0 Success
- * @retval -1 Failure
- */
-static int maildir_read_dir(struct Mailbox *m)
-{
-  /* maildir looks sort of like MH, except that there are two subdirectories
-   * of the main folder path from which to read messages */
-  if ((mh_read_dir(m, "new") == -1) || (mh_read_dir(m, "cur") == -1))
-    return -1;
-
-  return 0;
-}
-
 /**
  * ch_compare - qsort callback to sort characters
  * @param a First  character to compare
@@ -298,7 +282,12 @@ cleanup:
  */
 static int maildir_mbox_open(struct Mailbox *m)
 {
-  return maildir_read_dir(m);
+  /* maildir looks sort of like MH, except that there are two subdirectories
+   * of the main folder path from which to read messages */
+  if ((mh_read_dir(m, "new") == -1) || (mh_read_dir(m, "cur") == -1))
+    return -1;
+
+  return 0;
 }
 
 /**