aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-10-29 13:59:20 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-10-29 13:59:20 +0000
commitd30568ab8c715b09a3c77951e30343ce49f2c4ff (patch)
treec5502f1d667d5eab303895e0ad4698c3d3795d5a
parentde2a892729103d2f4743d5df52ca143e5969d04a (diff)
downloadgnunet-d30568ab8c715b09a3c77951e30343ce49f2c4ff.tar.gz
gnunet-d30568ab8c715b09a3c77951e30343ce49f2c4ff.zip
fixed eclipse refactoring bugs
-rw-r--r--src/core/gnunet-service-core.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c
index 4f650b909..4ff73395c 100644
--- a/src/core/gnunet-service-core.c
+++ b/src/core/gnunet-service-core.c
@@ -2197,7 +2197,7 @@ process_plaintext_neighbour_queue (struct Neighbour *n)
2197 "Encrypting %u bytes of plaintext messages for `%4s' for transmission in %llums.\n", 2197 "Encrypting %u bytes of plaintext messages for `%4s' for transmission in %llums.\n",
2198 (unsigned int) used - ENCRYPTED_HEADER_SIZE, 2198 (unsigned int) used - ENCRYPTED_HEADER_SIZE,
2199 GNUNET_i2s(&n->peer), 2199 GNUNET_i2s(&n->peer),
2200 (unsigned long long) GNUNET_TIME_absolute_get_remaining (deadline).abs_value); 2200 (unsigned long long) GNUNET_TIME_absolute_get_remaining (deadline).rel_value);
2201#endif 2201#endif
2202 GNUNET_assert (GNUNET_OK == 2202 GNUNET_assert (GNUNET_OK ==
2203 do_encrypt (n, 2203 do_encrypt (n,
@@ -3779,11 +3779,11 @@ neighbour_quota_update (void *cls,
3779 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 3779 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3780 "Current quota for `%4s' is %u/%llu b/s in (old: %u b/s) / %u out (%u internal)\n", 3780 "Current quota for `%4s' is %u/%llu b/s in (old: %u b/s) / %u out (%u internal)\n",
3781 GNUNET_i2s (&n->peer), 3781 GNUNET_i2s (&n->peer),
3782 (unsigned int) ntohl (q_in.rel_value__), 3782 (unsigned int) ntohl (q_in.value__),
3783 bandwidth_target_out_bps, 3783 bandwidth_target_out_bps,
3784 (unsigned int) ntohl (n->bw_in.rel_value__), 3784 (unsigned int) ntohl (n->bw_in.value__),
3785 (unsigned int) ntohl (n->bw_out.rel_value__), 3785 (unsigned int) ntohl (n->bw_out.value__),
3786 (unsigned int) ntohl (n->bw_out_internal_limit.rel_value__)); 3786 (unsigned int) ntohl (n->bw_out_internal_limit.value__));
3787#endif 3787#endif
3788 if (n->bw_in.value__ != q_in.value__) 3788 if (n->bw_in.value__ != q_in.value__)
3789 { 3789 {