aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-30 21:57:07 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-30 21:57:07 +0000
commite83dc39d6853ec31919ee54223fe1196b8d7de1d (patch)
tree68a6f2afd365b73ea6690c178bdb8d2d33c76c51 /pop3.c
parent0a9f1280ef062b8f1aeef1b99cd7738f79d5d1ca (diff)
downloadfetchmail-e83dc39d6853ec31919ee54223fe1196b8d7de1d.tar.gz
fetchmail-e83dc39d6853ec31919ee54223fe1196b8d7de1d.tar.bz2
fetchmail-e83dc39d6853ec31919ee54223fe1196b8d7de1d.zip
More robust message size queries
svn path=/trunk/; revision=1447
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pop3.c b/pop3.c
index 59d7f9e1..356feb36 100644
--- a/pop3.c
+++ b/pop3.c
@@ -434,8 +434,6 @@ static int pop3_getsizes(int sock, int count, int *sizes)
break;
else if (sscanf(buf, "%d %d", &num, &size) == 2)
sizes[num - 1] = size;
- else
- sizes[num - 1] = -1;
}
return(ok);