From 04dd4108f7026aa5b09d0c971d13e7c08ed0a9fa Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Thu, 13 Oct 2011 13:27:06 +0000 Subject: [PATCH] --- src/transport/gnunet-service-transport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transport/gnunet-service-transport.c b/src/transport/gnunet-service-transport.c index e551cbf49..4ce6b4321 100644 --- a/src/transport/gnunet-service-transport.c +++ b/src/transport/gnunet-service-transport.c @@ -340,7 +340,7 @@ ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer, #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.value__), GNUNET_i2s (target)); + ntohl (bandwidth_out.value__), GNUNET_i2s (peer)); #endif struct QuotaSetMessage msg; msg.header.size = htons (sizeof (struct QuotaSetMessage)); @@ -351,7 +351,7 @@ ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer, #if DEBUG_TRANSPORT GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n", - ntohl (bandwidth_in.value__), GNUNET_i2s (target)); + ntohl (bandwidth_in.value__), GNUNET_i2s (peer)); #endif GST_neighbours_set_incoming_quota (peer, bandwidth_in); } -- 2.25.1