From 5719a1bebd211869fe6d11824eee731c82b019d7 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 10 Oct 2011 13:11:45 +0000 Subject: [PATCH] fix --- src/transport/gnunet-service-transport_neighbours.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c index 0957a0ce1..367ea5571 100644 --- a/src/transport/gnunet-service-transport_neighbours.c +++ b/src/transport/gnunet-service-transport_neighbours.c @@ -735,7 +735,7 @@ try_connect_using_address (void *cls, const struct GNUNET_PeerIdentity *target, /* ATS told us inbound quota for this peer */ #if DEBUG_TRANSPORT GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n", - ntohl (bandwidth_in), GNUNET_i2s (target)); + ntohl (bandwidth_in.value__), GNUNET_i2s (target)); #endif GST_neighbours_set_incoming_quota (&n->id, bandwidth_in); @@ -748,7 +748,7 @@ try_connect_using_address (void *cls, const struct GNUNET_PeerIdentity *target, /* ... then send outbound quota for this peer to all clients */ #if DEBUG_TRANSPORT GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending outbound quota of %u Bps for peer `%s' to all clients\n", - ntohl (bandwidth_out), GNUNET_i2s (target)); + ntohl (bandwidth_out.value__), GNUNET_i2s (target)); #endif struct QuotaSetMessage msg; -- 2.25.1