diff options
-rw-r--r-- | src/rps/gnunet-service-rps.c | 2 | ||||
-rw-r--r-- | src/rps/rps-sampler_client.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c index ecbc8e208..0e3759c4c 100644 --- a/src/rps/gnunet-service-rps.c +++ b/src/rps/gnunet-service-rps.c @@ -596,8 +596,10 @@ static const uint32_t num_valid_peers_max = UINT32_MAX; static void do_round (void *cls); +#if ENABLE_MALICIOUS static void do_mal_round (void *cls); +#endif /* ENABLE_MALICIOUS */ /** diff --git a/src/rps/rps-sampler_client.c b/src/rps/rps-sampler_client.c index 5ab854e01..714943b51 100644 --- a/src/rps/rps-sampler_client.c +++ b/src/rps/rps-sampler_client.c @@ -379,7 +379,8 @@ sampler_mod_get_rand_peer (void *cls) return; } /* compute probability */ - /* Currently disabled due to numerical limitations */ + /* FIXME: Currently disabled due to numerical limitations */ + prob_observed_n = 0; // Inititialise to some value // prob_observed_n = prob_observed_n_peers (sampler->num_peers_estim, // s_elem->num_peers, // sampler->deficiency_factor); |