aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/imap.c b/imap.c
index eb1553a4..369b2944 100644
--- a/imap.c
+++ b/imap.c
@@ -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 {