aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-03 21:04:30 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-03 21:04:30 +0000
commit59f9b53799063574462dae2a34ebf34a89bc8bbf (patch)
tree55923b88bf9631fe19d38670a707fd2b5a44c60c /driver.c
parentf6ef1ccd435fcb05c3d13086b0227741ff1dbba8 (diff)
downloadfetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.tar.gz
fetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.tar.bz2
fetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.zip
Added sslproto.
svn path=/trunk/; revision=3183
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 60e03ffe..1fbd992a 100644
--- a/driver.c
+++ b/driver.c
@@ -1769,7 +1769,7 @@ const int maxfetch; /* maximum number of messages to fetch */
/* perform initial SSL handshake on open connection */
/* Note: We pass the realhost name over for certificate
verification. We may want to make this configurable */
- if (ctl->use_ssl && SSLOpen(mailserver_socket,ctl->sslkey,ctl->sslcert,realhost) == -1)
+ if (ctl->use_ssl && SSLOpen(mailserver_socket,ctl->sslkey,ctl->sslcert,ctl->sslproto,realhost) == -1)
{
report(stderr, _("SSL connection failed.\n"));
goto closeUp;