summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-06-13 05:09:18 +1000
committerDarren Tucker <dtucker@zip.com.au>2008-06-13 05:09:18 +1000
commit1cf65ae61d1148cb031798657ac514a479c78382 (patch)
tree5eef06a56e0355e77d2f9ae92f99f566b9d4f5e7
parentf6b01b758f4003a5cc59cf6a27afdc5123eb4fc4 (diff)
- (dtucker) [clientloop.c serverloop.c] channel_register_filter now
takes 2 more args. with djm@
-rw-r--r--ChangeLog4
-rw-r--r--clientloop.c2
-rw-r--r--serverloop.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cbf5a085..f3898599 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]
@@ -4277,4 +4279,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4985 2008/06/12 18:56:37 dtucker Exp $
+$Id: ChangeLog,v 1.4986 2008/06/12 19:09:18 dtucker Exp $
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: