aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-09-21 15:00:17 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-09-21 15:00:17 +0000
commita5180c9109b918cf441ffd0c90e05ab8c35d40d9 (patch)
treea4a6b1653073ab6a944ca9bf8de747a3dc522d84 /driver.c
parent85d5e89e02ddfa31f6753364d5fd235af2242cb8 (diff)
downloadfetchmail-a5180c9109b918cf441ffd0c90e05ab8c35d40d9.tar.gz
fetchmail-a5180c9109b918cf441ffd0c90e05ab8c35d40d9.tar.bz2
fetchmail-a5180c9109b918cf441ffd0c90e05ab8c35d40d9.zip
Make SSL connection failures PS_SOCKET (not PS_AUTHFAIL). Reported by Thomas Wolff.
svn path=/trunk/; revision=4314
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 88add41c..b78baa25 100644
--- a/driver.c
+++ b/driver.c
@@ -1097,7 +1097,7 @@ static int do_session(
ctl->sslcertpath,ctl->sslfingerprint,realhost,ctl->server.pollname) == -1)
{
report(stderr, GT_("SSL connection failed.\n"));
- err = PS_AUTHFAIL;
+ err = PS_SOCKET;
goto cleanUp;
}