diff options
author | Matt Johnston <matt@ucc.asn.au> | 2012-05-09 20:33:16 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2012-05-09 20:33:16 +0800 |
commit | 2a02c4084afb7413c02c728d766fc0af8f4c7083 (patch) | |
tree | ad3c8f204f846f4a5b4b4a06c4133f20b0a78df8 /common-channel.c | |
parent | e242b2820c6d49aea9623c02bd574d2c7baef1de (diff) |
- Don't sent SSH_MSG_UNIMPLEMENTED if we don't have ENABLE_SVR_REMOTETCPFWD
- Fix build if ENABLE_SVR_REMOTETCPFWD is disabled but ENABLE_SVR_LOCALTCPFWD
is enabled
Diffstat (limited to 'common-channel.c')
-rw-r--r-- | common-channel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common-channel.c b/common-channel.c index 9eaba50..5f22d44 100644 --- a/common-channel.c +++ b/common-channel.c @@ -653,6 +653,8 @@ static void send_msg_channel_data(struct Channel *channel, int isextended) { len, errno, fd)) return; } + + TRACE(("send_msg_channel_data: len %d fd %d", len, fd)) buf_incrwritepos(ses.writepayload, len); /* ... real size here */ buf_setpos(ses.writepayload, size_pos); |