summaryrefslogtreecommitdiffhomepage
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
commit298a5717bc479f13276982858e84172c3c29146a (patch)
tree42564c4a2a12faa5335635a054b05bf9b51ad6cd
parent347e8bd83917f5f20b2b5724a87682cfe8a237fa (diff)
compile fix when TRACE debugging is enabled
--HG-- extra : convert_revision : 7844ac7e5a24b88231de2af7520c49e56820a87c
-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) {