aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-11-15 11:52:39 +0000
committerChristian Grothoff <christian@grothoff.org>2012-11-15 11:52:39 +0000
commitff4cb80c8a162d55ce1639f59db0ba3ce3f17cb5 (patch)
tree8af7fb9c519fb2713d1da17532e4fd3dbb8b2c77 /src
parent57ce91e29030ed0608511491aaf7b4b45fedb2d4 (diff)
downloadgnunet-ff4cb80c8a162d55ce1639f59db0ba3ce3f17cb5.tar.gz
gnunet-ff4cb80c8a162d55ce1639f59db0ba3ce3f17cb5.zip
-fix the fix
Diffstat (limited to 'src')
-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 2e08d1a27..48ae61230 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -985,7 +985,7 @@ dequeue (struct Plugin *plugin, struct UDP_MessageWrapper * udpw)
985 { 985 {
986 GNUNET_STATISTICS_update (plugin->env->stats, 986 GNUNET_STATISTICS_update (plugin->env->stats,
987 "# UDP, total, bytes in buffers", 987 "# UDP, total, bytes in buffers",
988 (long long) -udpw->msg_size, GNUNET_NO); 988 - (long long) udpw->msg_size, GNUNET_NO);
989 plugin->bytes_in_buffer -= udpw->msg_size; 989 plugin->bytes_in_buffer -= udpw->msg_size;
990 } 990 }
991 GNUNET_STATISTICS_update (plugin->env->stats, 991 GNUNET_STATISTICS_update (plugin->env->stats,