diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-28 20:43:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-28 20:43:39 +0000 |
commit | 27a0815dbc15b1e837b115ade6f5e035152b60f9 (patch) | |
tree | 130e7244fc425f516ce11a34adc6c1a4fe06a861 /imap.c | |
parent | 83a3ffda69ae3d81dc97ce93467dec75db32c5cd (diff) | |
download | fetchmail-27a0815dbc15b1e837b115ade6f5e035152b60f9.tar.gz fetchmail-27a0815dbc15b1e837b115ade6f5e035152b60f9.tar.bz2 fetchmail-27a0815dbc15b1e837b115ade6f5e035152b60f9.zip |
The great options massacre.
svn path=/trunk/; revision=178
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -160,24 +160,16 @@ int *firstp; return(0); } -static int imap_fetch(socket, number, limit, lenp) +static int imap_fetch(socket, number, lenp) /* request nth message */ int socket; int number; -int limit; int *lenp; { char buf [POPBUFSIZE+1]; int num; - if (limit) - gen_send(socket, - "PARTIAL %d RFC822 0 %d", - number, limit); - else - gen_send(socket, - "FETCH %d RFC822", - number); + gen_send(socket, "FETCH %d RFC822", number); /* looking for FETCH response */ do { |