diff options
author | Julius Bünger <buenger@mytum.de> | 2018-08-29 15:42:19 +0200 |
---|---|---|
committer | Julius Bünger <buenger@mytum.de> | 2018-08-29 15:42:19 +0200 |
commit | 970e25512e192ee37d952b97394c14828672edcd (patch) | |
tree | 9a00cb0eebd84bda94c90bde8a569c44cb45a23d /src | |
parent | 05eac20b9b8772f5bd6946bb49bf57ad1b66e63c (diff) |
Fix condition for returning peer from sampler element
Diffstat (limited to 'src')
-rw-r--r-- | src/rps/gnunet-service-rps_sampler.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/rps/gnunet-service-rps_sampler.c b/src/rps/gnunet-service-rps_sampler.c index 6129f1b5b..53d982621 100644 --- a/src/rps/gnunet-service-rps_sampler.c +++ b/src/rps/gnunet-service-rps_sampler.c @@ -633,18 +633,19 @@ sampler_mod_get_rand_peer (void *cls) cls); return; } - else if (2 < s_elem->num_peers) - { - LOG (GNUNET_ERROR_TYPE_DEBUG, - "This s_elem saw less than two peers -- scheduling for later\n"); - GNUNET_assert (NULL == gpc->get_peer_task); - gpc->get_peer_task = - GNUNET_SCHEDULER_add_delayed (sampler->max_round_interval, - &sampler_mod_get_rand_peer, - cls); - } - /* More reasons to wait could be added here */ } + if (2 > s_elem->num_peers) + { + LOG (GNUNET_ERROR_TYPE_DEBUG, + "This s_elem saw less than two peers -- scheduling for later\n"); + GNUNET_assert (NULL == gpc->get_peer_task); + gpc->get_peer_task = + GNUNET_SCHEDULER_add_delayed (sampler->max_round_interval, + &sampler_mod_get_rand_peer, + cls); + return; + } + /* More reasons to wait could be added here */ GNUNET_STATISTICS_set (stats, "# client sampler element input", |