aboutsummaryrefslogtreecommitdiff
path: root/src/exit
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
commite8cf81fdb3fdaef59b49da8f6e952a3225ab326e (patch)
tree4e5f75d44a9121b32895fdfc5a4177052a7d923d /src/exit
parentae8cb91d9961899075a892a3110204bc139c2eb6 (diff)
downloadgnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.tar.gz
gnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.zip
fixing compiler warnings
Diffstat (limited to 'src/exit')
-rw-r--r--src/exit/gnunet-daemon-exit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c
index f31e11d83..7b9f7d5c9 100644
--- a/src/exit/gnunet-daemon-exit.c
+++ b/src/exit/gnunet-daemon-exit.c
@@ -1181,7 +1181,7 @@ tcp_from_helper (const struct GNUNET_TUN_TcpHeader *tcp,
1181 char dbuf[INET6_ADDRSTRLEN]; 1181 char dbuf[INET6_ADDRSTRLEN];
1182 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1182 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1183 "Received TCP packet with %u bytes going from %s:%u to %s:%u\n", 1183 "Received TCP packet with %u bytes going from %s:%u to %s:%u\n",
1184 pktlen - sizeof (struct GNUNET_TUN_TcpHeader), 1184 (unsigned int) (pktlen - sizeof (struct GNUNET_TUN_TcpHeader)),
1185 inet_ntop (af, 1185 inet_ntop (af,
1186 source_ip, 1186 source_ip,
1187 sbuf, sizeof (sbuf)), 1187 sbuf, sizeof (sbuf)),