]> granicus.if.org Git - mutt/commitdiff
Explicitly NULL unimplemented pop mx_ops functions.
authorKevin McCarthy <kevin@8t8.us>
Wed, 3 Aug 2016 02:18:53 +0000 (19:18 -0700)
committerKevin McCarthy <kevin@8t8.us>
Wed, 3 Aug 2016 02:18:53 +0000 (19:18 -0700)
The struct initialization already does this for unlisted fields, but
I'd rather be explicit about unimplemented operations.

pop.c

diff --git a/pop.c b/pop.c
index b6f891692ae4b5175f264e5474fed050a183abe5..294d71d8d5f1c3d6ee0fecc2f4277d457ec16bea 100644 (file)
--- a/pop.c
+++ b/pop.c
@@ -942,4 +942,6 @@ struct mx_ops mx_pop_ops = {
   .open_msg = pop_fetch_message,
   .close_msg = pop_close_message,
   .check = pop_check_mailbox,
+  .commit_msg = NULL,
+  .open_new_msg = NULL,
 };