diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 19:52:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 19:52:51 +0000 |
commit | 7d8b3d857b90d76b78b74a58e30e710d41cc4676 (patch) | |
tree | 41f3e9a471a497e8ca76c96e865bfad5c1f53fd2 /imap.c | |
parent | 65c951ab5d7141594c23c14f51e42a42a096fef1 (diff) | |
download | fetchmail-7d8b3d857b90d76b78b74a58e30e710d41cc4676.tar.gz fetchmail-7d8b3d857b90d76b78b74a58e30e710d41cc4676.tar.bz2 fetchmail-7d8b3d857b90d76b78b74a58e30e710d41cc4676.zip |
*** empty log message ***
svn path=/trunk/; revision=1369
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -441,7 +441,6 @@ static int imap_getrange(int sock, return(PS_SUCCESS); } -#ifdef __UNUSED__ static int imap_getsizes(int sock, int count, int *sizes) /* capture the sizes of all messages */ { @@ -464,7 +463,6 @@ static int imap_getsizes(int sock, int count, int *sizes) return(PS_SUCCESS); } -#endif /* __UNUSED__ */ static int imap_is_old(int sock, struct query *ctl, int number) /* is the given message old? */ @@ -647,7 +645,7 @@ const static struct method imap = imap_ok, /* parse command response */ imap_getauth, /* get authorization */ imap_getrange, /* query range of messages */ - NULL, /* we can get message sizes from individual messages */ + imap_getsizes, /* get sizes of messages (used for --limit option */ imap_is_old, /* no UID check */ imap_fetch_headers, /* request given message headers */ imap_fetch_body, /* request given message body */ |