From: Christian Grothoff Date: Wed, 25 Jan 2017 21:38:17 +0000 (+0100) Subject: fix log calls X-Git-Tag: taler-0.2.1~288 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=07b4b7ec6c88035c39d4ec710c4de82e49eb5787;p=oweals%2Fgnunet.git fix log calls --- diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c index 72b7b692d..2b50f781c 100644 --- a/src/cadet/cadet_api.c +++ b/src/cadet/cadet_api.c @@ -1688,7 +1688,7 @@ GNUNET_CADET_notify_transmit_ready (struct GNUNET_CADET_Channel *channel, GNUNET_assert (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE >= notify_size); LOG (GNUNET_ERROR_TYPE_DEBUG, "CADET NOTIFY TRANSMIT READY on channel %X allow_send is %u to %s with %u bytes\n", - channel->ccn, + ntohl (channel->ccn.channel_of_client), channel->allow_send, (ntohl (channel->ccn.channel_of_client) >= GNUNET_CADET_LOCAL_CHANNEL_ID_CLI) @@ -1745,7 +1745,7 @@ GNUNET_CADET_receive_done (struct GNUNET_CADET_Channel *channel) GNUNET_MESSAGE_TYPE_CADET_LOCAL_ACK); LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending ACK on channel %X\n", - channel->ccn.channel_of_client); + ntohl (channel->ccn.channel_of_client)); msg->ccn = channel->ccn; GNUNET_MQ_send (channel->cadet->mq, env);