]> granicus.if.org Git - mutt/commitdiff
Add a TODO to mx_open_new_message() to use mx_ops in the future.
authorKevin McCarthy <kevin@8t8.us>
Wed, 25 May 2016 22:58:04 +0000 (15:58 -0700)
committerKevin McCarthy <kevin@8t8.us>
Wed, 25 May 2016 22:58:04 +0000 (15:58 -0700)
We can't use it until mx_open_mailbox_append() is converted to
set mx_ops.

mx.c

diff --git a/mx.c b/mx.c
index 5ac8804fb69ce6d2b708a96b6d53d59d60918169..4c7e8d08fa9a93603e4e1406be28cd2614ab290f 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -1204,6 +1204,9 @@ int mx_sync_mailbox (CONTEXT *ctx, int *index_hint)
  */
 MESSAGE *mx_open_new_message (CONTEXT *dest, HEADER *hdr, int flags)
 {
+  /* TODO: Convert this to use dest->mx_ops after
+   * mx_open_mailbox_append() is changed to set mx_ops.
+   */
   struct mx_ops *ops = mx_get_ops (dest->magic);
   ADDRESS *p = NULL;
   MESSAGE *msg;