aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/imap.c b/imap.c
index cb3437a8..2b25f866 100644
--- a/imap.c
+++ b/imap.c
@@ -463,6 +463,7 @@ static int imap_getsizes(int sock, int count, int *sizes)
/* capture the sizes of all messages */
{
char buf [POPBUFSIZE+1];
+ int i;
gen_send(sock, "FETCH 1:%d RFC822.SIZE", count);
for (;;)
@@ -475,8 +476,6 @@ static int imap_getsizes(int sock, int count, int *sizes)
break;
else if (sscanf(buf, "* %d FETCH (RFC822.SIZE %d)", &num, &size) == 2)
sizes[num - 1] = size;
- else
- sizes[num - 1] = -1;
}
return(PS_SUCCESS);