diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-03-13 13:58:14 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-03-13 13:58:14 +0000 |
commit | f45eafe342aa07dfdc7a83e865b642f9b8ef2fa0 (patch) | |
tree | 420b80af3728353ee1a4151ecd32d627a48c1fdf /cli-channel.c | |
parent | a68755af2bbc2e34ad23a74fc4d9d5c58502aa14 (diff) |
* fix longstanding bug with connections being closed on failure to
connect to auth socket (server)
* differentiate between get_byte and get_bool
* get rid of some // comments
* general tidying
--HG--
extra : convert_revision : fb8d188ce33b6b45804a5ce51b9f601f83bdf3d7
Diffstat (limited to 'cli-channel.c')
-rw-r--r-- | cli-channel.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli-channel.c b/cli-channel.c index 42e165b..1bd49ab 100644 --- a/cli-channel.c +++ b/cli-channel.c @@ -33,15 +33,12 @@ /* We receive channel data - only used by the client chansession code*/ void recv_msg_channel_extended_data() { - unsigned int chan; struct Channel *channel; unsigned int datatype; TRACE(("enter recv_msg_channel_extended_data")) - chan = buf_getint(ses.payload); - channel = getchannel(chan); - + channel = getchannel(); if (channel == NULL) { dropbear_exit("Unknown channel"); } |