diff options
author | 2000-04-16 16:40:43 +0000 | |
---|---|---|
committer | 2000-04-16 16:40:43 +0000 | |
commit | d1783c9c612c50e3f41ff10ad07a9202418ea4a8 (patch) | |
tree | e4415979ae575da67220e61418c9e58316af28e4 | |
parent | - Insert some .Pp here and there to make the man page easier to read. (diff) | |
download | wireguard-openbsd-d1783c9c612c50e3f41ff10ad07a9202418ea4a8.tar.xz wireguard-openbsd-d1783c9c612c50e3f41ff10ad07a9202418ea4a8.zip |
fix pr 1196, listen_port and port_to_connect interchanged
-rw-r--r-- | usr.bin/ssh/channels.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index eabcc91c909..c2fb3d27a91 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -17,7 +17,7 @@ */ #include "includes.h" -RCSID("$Id: channels.c,v 1.49 2000/04/14 10:30:30 markus Exp $"); +RCSID("$Id: channels.c,v 1.50 2000/04/16 16:40:43 markus Exp $"); #include "ssh.h" #include "packet.h" @@ -1465,9 +1465,9 @@ channel_request_remote_forwarding(u_short listen_port, const char *host_to_conne packet_put_int(listen_port); } else { packet_start(SSH_CMSG_PORT_FORWARD_REQUEST); - packet_put_int(port_to_connect); - packet_put_cstring(host_to_connect); packet_put_int(listen_port); + packet_put_cstring(host_to_connect); + packet_put_int(port_to_connect); packet_send(); packet_write_wait(); /* |