diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-05-14 20:27:22 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-05-14 20:27:22 +0200 |
commit | a09e0a87dd4510932712462b91c7ec60bc42e360 (patch) | |
tree | 9742a6dfc0c6c4383c02efc715e11e4b62f30e49 /fetchmail.c | |
parent | b53d832f42738b2a680f4ed05bb56e8f1d1f2abb (diff) | |
parent | 4c2d5b3bb5f3a142cbd0ef95e41a8f807fe691f4 (diff) | |
download | fetchmail-a09e0a87dd4510932712462b91c7ec60bc42e360.tar.gz fetchmail-a09e0a87dd4510932712462b91c7ec60bc42e360.tar.bz2 fetchmail-a09e0a87dd4510932712462b91c7ec60bc42e360.zip |
Merge branch 'lanurmi/fetchmail-no-autoprobe-after-socket-fail' into HEAD
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 9959db62..cca131c2 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1525,7 +1525,7 @@ static int query_host(struct query *ctl) st = query_host(ctl); } while (st == PS_REPOLL); - if (st == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP || st == PS_MAXFETCH || st == PS_DNS) + if (st == PS_SUCCESS || st == PS_NOMAIL || st == PS_SOCKET || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP || st == PS_MAXFETCH || st == PS_DNS) break; } ctl->server.protocol = P_AUTO; |