aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2016-05-03 18:38:44 +0000
committerBart Polot <bart@net.in.tum.de>2016-05-03 18:38:44 +0000
commitdd8bd374e17f2edb5313368da57b8c3a572e21c7 (patch)
tree177c11e083848e6aa44eaea6235df1a0ebd6c484 /src/transport/plugin_transport_udp.c
parent5954f4cbe01c78fff5a5242e8ff91c0a1c65c4e1 (diff)
downloadgnunet-dd8bd374e17f2edb5313368da57b8c3a572e21c7.tar.gz
gnunet-dd8bd374e17f2edb5313368da57b8c3a572e21c7.zip
Fix printf format causing SEISEGV
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 b5706f024..a999897cc 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -3139,7 +3139,7 @@ udp_select_read (struct Plugin *plugin,
3139 if (size != ntohs (msg->size)) 3139 if (size != ntohs (msg->size))
3140 { 3140 {
3141 LOG (GNUNET_ERROR_TYPE_WARNING, 3141 LOG (GNUNET_ERROR_TYPE_WARNING,
3142 "UDP malformed message header from %s\n", 3142 "UDP malformed message (size %u) header from %s\n",
3143 (unsigned int) size, 3143 (unsigned int) size,
3144 GNUNET_a2s (sa, 3144 GNUNET_a2s (sa,
3145 fromlen)); 3145 fromlen));