summaryrefslogtreecommitdiff
path: root/common-channel.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2012-05-09 20:33:16 +0800
committerMatt Johnston <matt@ucc.asn.au>2012-05-09 20:33:16 +0800
commitc8401a1d3cf8af4800a7bf909b6fded706a2eddf (patch)
treee08b5a7f836b66c1b1f24a2178a5ed39033cd09f /common-channel.c
parent0ff915802a75403c479a2105ca273e4755324152 (diff)
downloaddropbear-c8401a1d3cf8af4800a7bf909b6fded706a2eddf.tar.gz
- 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.c2
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);