aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 33c3b48b..b1617fca 100644
--- a/driver.c
+++ b/driver.c
@@ -1446,9 +1446,10 @@ const struct method *proto; /* protocol method table */
#if INET6
if ((sock = SockOpen(realhost,
ctl->server.service ? ctl->server.service : protocol->service,
- ctl->server.netsec)) == -1)
+ ctl->server.netsec)) == -1, ctl->server.plugin
+ )
#else /* INET6 */
- if ((sock = SockOpen(realhost, port, NULL)) == -1)
+ if ((sock = SockOpen(realhost, port, NULL, ctl->server.plugin)) == -1)
#endif /* INET6 */
{
#if !INET6