aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-11-28 16:34:54 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-11-28 16:34:54 +0000
commit1d4c630077479c5b7b7b8a37970d61db0597cc9b (patch)
tree89651a7d006115c02edaa76bbf80736205ab3b17 /pop3.c
parent24b7c26905eff4f805e351f06d05229a36e7a370 (diff)
downloadfetchmail-1d4c630077479c5b7b7b8a37970d61db0597cc9b.tar.gz
fetchmail-1d4c630077479c5b7b7b8a37970d61db0597cc9b.tar.bz2
fetchmail-1d4c630077479c5b7b7b8a37970d61db0597cc9b.zip
Fixed an undead-message hole.
svn path=/trunk/; revision=2220
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 150dd3a2..da21777c 100644
--- a/pop3.c
+++ b/pop3.c
@@ -667,7 +667,7 @@ int doPOP3 (struct query *ctl)
return(PS_SYNTAX);
}
#endif /* MBOX */
- peek_capable = FALSE;
+ peek_capable = !ctl->fetchall;
return(do_protocol(ctl, &pop3));
}
#endif /* POP3_ENABLE */