projects
/
neomutt
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d844205
)
Explicitly NULL unimplemented pop mx_ops functions.
author
Kevin McCarthy
<kevin@8t8.us>
Wed, 3 Aug 2016 02:18:53 +0000
(19:18 -0700)
committer
Kevin 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
patch
|
blob
|
history
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,
};