diff options
| author | Matthias Andree <matthias.andree@gmx.de> | 2021-08-27 19:23:21 +0200 | 
|---|---|---|
| committer | Matthias Andree <matthias.andree@gmx.de> | 2021-08-27 19:50:58 +0200 | 
| commit | 2a2150f4cd1bd6b10c1b327e6aa2704bb421f128 (patch) | |
| tree | 33531823264ceff05c81618694e5fb4fb0305cdc | |
| parent | 74771392abf037d06751dd1f42f11248bfa6e8c2 (diff) | |
| download | fetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.tar.gz fetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.tar.bz2 fetchmail-2a2150f4cd1bd6b10c1b327e6aa2704bb421f128.zip | |
etrn.c, odmr.c, pop2.c: declare NULL con-/destructors
| -rw-r--r-- | etrn.c | 2 | ||||
| -rw-r--r-- | odmr.c | 2 | ||||
| -rw-r--r-- | pop2.c | 4 | 
3 files changed, 7 insertions, 1 deletions
| @@ -143,6 +143,8 @@ static const struct method etrn =      NULL,		/* no mailbox support */      etrn_logout,	/* log out, we're done */      FALSE,		/* no, we can't re-poll */ +    NULL,		/* no constructor */ +    NULL		/* no destructor */  };  int doETRN (struct query *ctl) @@ -234,6 +234,8 @@ static const struct method odmr =      NULL,		/* no mailbox support */      odmr_logout,	/* log out, we're done */      FALSE,		/* no, we can't re-poll */ +    NULL,		/* no constructor */ +    NULL		/* no destructor */  };  int doODMR (struct query *ctl) @@ -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) | 
