diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-01-16 13:17:52 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-01-16 13:17:52 +0000 |
commit | 01bda4f78146fa154b71159d5b667156cb9e3154 (patch) | |
tree | 8c81a21bf6738410d5c59e222ab5e6d1c6a62b45 /usr.bin/ssh/ssh.c | |
parent | 496e01e18f4d501ab034f7e71a4cb06167ff88c7 (diff) |
wrapper for channel_setup_fwd_listener
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 7a7138d9d4b..d0200dcebcd 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.157 2001/12/28 15:06:00 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.158 2002/01/16 13:17:51 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -821,7 +821,7 @@ ssh_init_forwarding(void) options.local_forwards[i].port, options.local_forwards[i].host, options.local_forwards[i].host_port); - success += channel_request_local_forwarding( + success += channel_setup_local_fwd_listener( options.local_forwards[i].port, options.local_forwards[i].host, options.local_forwards[i].host_port, |