aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-30 21:56:07 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-30 21:56:07 +0000
commit4c159159d296e30c59fa780299644d71b2e52d3d (patch)
tree743bb78daee8b5b60cc8b06971db972ccb42417b /driver.c
parentd8d123a20816b7dff876c865615bfef1a083074e (diff)
downloadfetchmail-4c159159d296e30c59fa780299644d71b2e52d3d.tar.gz
fetchmail-4c159159d296e30c59fa780299644d71b2e52d3d.tar.bz2
fetchmail-4c159159d296e30c59fa780299644d71b2e52d3d.zip
INCOMPATIBLE: DROP --netsec/-T option, NET_SECURITY macro - the required library is no longer available.
svn path=/trunk/; revision=4192
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 647b777e..56fc93f1 100644
--- a/driver.c
+++ b/driver.c
@@ -1078,9 +1078,9 @@ static int do_session(
#ifdef INET6_ENABLE
if ((mailserver_socket = SockOpen(realhost,
ctl->server.service ? ctl->server.service : ( ctl->use_ssl ? ctl->server.base_protocol->sslservice : ctl->server.base_protocol->service ),
- ctl->server.netsec, ctl->server.plugin)) == -1)
+ ctl->server.plugin)) == -1)
#else /* INET6_ENABLE */
- if ((mailserver_socket = SockOpen(realhost, port, NULL, ctl->server.plugin)) == -1)
+ if ((mailserver_socket = SockOpen(realhost, port, ctl->server.plugin)) == -1)
#endif /* INET6_ENABLE */
{
char errbuf[BUFSIZ];