aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-30 15:04:48 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-30 15:04:48 +0000
commit9835a1c29eafac2afefc7350a0179f20071b190a (patch)
tree4fb0139979cf4ce34ca8f8a93864b722bb62b9a6
parent562e7cdfb15e17896770b422e07896477100246a (diff)
downloadgnunet-9835a1c29eafac2afefc7350a0179f20071b190a.tar.gz
gnunet-9835a1c29eafac2afefc7350a0179f20071b190a.zip
-make compiler happy (presumed uninitialized variable)
-rw-r--r--src/vpn/gnunet-daemon-vpn-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vpn/gnunet-daemon-vpn-helper.c b/src/vpn/gnunet-daemon-vpn-helper.c
index 41910a701..d0e36099e 100644
--- a/src/vpn/gnunet-daemon-vpn-helper.c
+++ b/src/vpn/gnunet-daemon-vpn-helper.c
@@ -607,7 +607,7 @@ message_token (void *cls GNUNET_UNUSED, void *client GNUNET_UNUSED,
607 sizeof (GNUNET_HashCode) + ntohs (pkt->ip_hdr.tot_lngth) - 607 sizeof (GNUNET_HashCode) + ntohs (pkt->ip_hdr.tot_lngth) -
608 4 * pkt->ip_hdr.hdr_lngth); 608 4 * pkt->ip_hdr.hdr_lngth);
609 609
610 GNUNET_MESH_ApplicationType app_type; 610 GNUNET_MESH_ApplicationType app_type = 0; /* make compiler happy */
611 611
612 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "me->addrlen is %d\n", 612 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "me->addrlen is %d\n",
613 me->addrlen); 613 me->addrlen);