aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-05-29 22:48:06 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-05-29 22:48:06 +0000
commit9de124d371e99f57c9340b454a59b6c4603392b4 (patch)
tree5ded52f0d70ca518b37dc9a810d673fccc7cdd32 /fetchmail.c
parent2ce1259d0e69bcf4113ea8f03d94729d262d37e1 (diff)
downloadfetchmail-9de124d371e99f57c9340b454a59b6c4603392b4.tar.gz
fetchmail-9de124d371e99f57c9340b454a59b6c4603392b4.tar.bz2
fetchmail-9de124d371e99f57c9340b454a59b6c4603392b4.zip
Before trying to fix the no-reset bug.
svn path=/trunk/; revision=3329
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index a2343614..c2a2880e 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1376,7 +1376,7 @@ static int query_host(struct query *ctl)
for (i = 0; i < sizeof(autoprobe)/sizeof(autoprobe[0]); i++)
{
ctl->server.protocol = autoprobe[i];
- if ((st = query_host(ctl)) == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP)
+ if ((st = query_host(ctl)) == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP || st == PS_MAXFETCH)
break;
}
ctl->server.protocol = P_AUTO;