diff options
author | 2008-12-02 19:01:07 +0000 | |
---|---|---|
committer | 2008-12-02 19:01:07 +0000 | |
commit | a0ea4f13680143059b35ec90311b8fbd0a34ee36 (patch) | |
tree | 3afbe61c0373c157732b49adc7fb10c6ac5b7beb /usr.bin/ssh/clientloop.c | |
parent | correct spelling (ambigous -> ambiguous) (diff) | |
download | wireguard-openbsd-a0ea4f13680143059b35ec90311b8fbd0a34ee36.tar.xz wireguard-openbsd-a0ea4f13680143059b35ec90311b8fbd0a34ee36.zip |
we have to use the recipient's channel number (RFC 4254) for
SSH2_MSG_CHANNEL_SUCCESS/SSH2_MSG_CHANNEL_FAILURE messages,
otherwise we trigger 'Non-public channel' error messages on sshd
systems with clientkeepalive enabled; noticed by sturm; ok djm;
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 979a8e46af3..6d1683d6675 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.204 2008/11/05 03:23:09 stevesk Exp $ */ +/* $OpenBSD: clientloop.c,v 1.205 2008/12/02 19:01:07 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1834,7 +1834,7 @@ client_input_channel_req(int type, u_int32_t seq, void *ctxt) if (reply) { packet_start(success ? SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE); - packet_put_int(id); + packet_put_int(c->remote_id); packet_send(); } xfree(rtype); |