aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-01-14 09:38:02 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-01-14 09:38:02 +0000
commit950b763d1bfd5eed2ff4d1105ab9e170be87017f (patch)
treecd2e340f0ab7211bd5fb515eca454cd4f743baf8 /src/transport/plugin_transport_udp.c
parent34ead9e027a79b8df4bbeaffde5f18fc5bfc4f92 (diff)
downloadgnunet-950b763d1bfd5eed2ff4d1105ab9e170be87017f.tar.gz
gnunet-950b763d1bfd5eed2ff4d1105ab9e170be87017f.zip
fix for printing address
Diffstat (limited to 'src/transport/plugin_transport_udp.c')
-rw-r--r--src/transport/plugin_transport_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index 836cf2ad5..8f847b0eb 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -1175,7 +1175,7 @@ udp_disconnect_session (void *cls, struct Session *s)
1175 GNUNET_assert(GNUNET_YES != s->in_destroy); 1175 GNUNET_assert(GNUNET_YES != s->in_destroy);
1176 LOG(GNUNET_ERROR_TYPE_DEBUG, "Session %p to peer `%s' address ended\n", s, 1176 LOG(GNUNET_ERROR_TYPE_DEBUG, "Session %p to peer `%s' address ended\n", s,
1177 GNUNET_i2s (&s->target), 1177 GNUNET_i2s (&s->target),
1178 GNUNET_a2s (s->address->address, s->address->address_length)); 1178 udp_address_to_string (NULL, s->address->address, s->address->address_length));
1179 /* stop timeout task */ 1179 /* stop timeout task */
1180 if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task) 1180 if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task)
1181 { 1181 {