From 136d018193ebf1399d625d001e6e45ba3e8cdef0 Mon Sep 17 00:00:00 2001 From: dtucker Date: Thu, 12 Jun 2008 19:09:18 +0000 Subject: [PATCH] - (dtucker) [clientloop.c serverloop.c] channel_register_filter now takes 2 more args. with djm@ --- ChangeLog | 2 ++ clientloop.c | 2 +- serverloop.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f4c9426d..b5806b17 100644 --- a/ChangeLog +++ b/ChangeLog @@ -115,6 +115,8 @@ - dtucker@cvs.openbsd.org 2008/06/12 16:35:31 [ssh_config.5 ssh.c] keyword expansion for localcommand. ok djm@ + - (dtucker) [clientloop.c serverloop.c] channel_register_filter now + takes 2 more args. with djm@ 20080611 - (djm) [channels.c configure.ac] diff --git a/clientloop.c b/clientloop.c index d2407ed7..62adbb78 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1745,7 +1745,7 @@ client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun) #if defined(SSH_TUN_FILTER) if (options.tun_open == SSH_TUNMODE_POINTOPOINT) channel_register_filter(c->self, sys_tun_infilter, - sys_tun_outfilter); + sys_tun_outfilter, NULL, NULL); #endif packet_start(SSH2_MSG_CHANNEL_OPEN); diff --git a/serverloop.c b/serverloop.c index 76d76bab..ab4bf84a 100644 --- a/serverloop.c +++ b/serverloop.c @@ -998,7 +998,7 @@ server_request_tun(void) #if defined(SSH_TUN_FILTER) if (mode == SSH_TUNMODE_POINTOPOINT) channel_register_filter(c->self, sys_tun_infilter, - sys_tun_outfilter); + sys_tun_outfilter, NULL, NULL); #endif done: -- 2.45.2