aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2021-08-27 19:23:21 +0200
committerMatthias Andree <matthias.andree@gmx.de>2021-08-27 19:50:58 +0200
commit2a2150f4cd1bd6b10c1b327e6aa2704bb421f128 (patch)
tree33531823264ceff05c81618694e5fb4fb0305cdc /pop2.c
parent74771392abf037d06751dd1f42f11248bfa6e8c2 (diff)
downloadfetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.tar.gz
fetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.tar.bz2
fetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.zip
etrn.c, odmr.c, pop2.c: declare NULL con-/destructors
Diffstat (limited to 'pop2.c')
-rw-r--r--pop2.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pop2.c b/pop2.c
index 03d58a18..bae61c15 100644
--- a/pop2.c
+++ b/pop2.c
@@ -171,7 +171,9 @@ static const struct method pop2 =
NULL, /* how to mark a message as seen */
NULL, /* how to end mailbox processing */
pop2_logout, /* log out, we're done */
- FALSE /* no, we can't re-poll */
+ FALSE, /* no, we can't re-poll */
+ NULL, /* no constructor */
+ NULL /* no destructor */
};
int doPOP2 (struct query *ctl)