From: Kevin McCarthy Date: Wed, 3 Aug 2016 02:18:53 +0000 (-0700) Subject: Explicitly NULL unimplemented pop mx_ops functions. X-Git-Tag: mutt-1-7-rel~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=161d91686d5855679040c702300d83087df457ef;p=mutt Explicitly NULL unimplemented pop mx_ops functions. The struct initialization already does this for unlisted fields, but I'd rather be explicit about unimplemented operations. --- diff --git a/pop.c b/pop.c index b6f89169..294d71d8 100644 --- 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, };