summaryrefslogtreecommitdiff
path: root/common-channel.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-05-04 15:31:17 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-05-04 15:31:17 +0000
commitf3ba1c0042f84a38d8588a4c7aaabfcc09fc4f1e (patch)
tree42564c4a2a12faa5335635a054b05bf9b51ad6cd /common-channel.c
parent0df3f1f22e5a18e371ef01f73dfb72cc047bc9bd (diff)
downloaddropbear-f3ba1c0042f84a38d8588a4c7aaabfcc09fc4f1e.tar.gz
compile fix when TRACE debugging is enabled
Diffstat (limited to 'common-channel.c')
-rw-r--r--common-channel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common-channel.c b/common-channel.c
index bb7928c..f03039a 100644
--- a/common-channel.c
+++ b/common-channel.c
@@ -964,7 +964,8 @@ void recv_msg_channel_open_confirmation() {
channel->transwindow = buf_getint(ses.payload);
channel->transmaxpacket = buf_getint(ses.payload);
- TRACE(("new chan remote %d localho %d", channel->remotechan, chan))
+ TRACE(("new chan remote %d local %d",
+ channel->remotechan, channel->index))
/* Run the inithandler callback */
if (channel->type->inithandler) {