aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps-sampler_client.c
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2018-11-28 00:01:16 +0100
committerJulius Bünger <buenger@mytum.de>2018-11-28 00:01:16 +0100
commita3b65a1c9b2665c877ed0b066994693b94e941cf (patch)
treeb759c27a3667076b0851be6086a64f150e12ad49 /src/rps/rps-sampler_client.c
parent3cb06d8896196df2238c2b6dda59ba871af8b276 (diff)
downloadgnunet-a3b65a1c9b2665c877ed0b066994693b94e941cf.tar.gz
gnunet-a3b65a1c9b2665c877ed0b066994693b94e941cf.zip
RPS sampler: Fix creation of sampler
Diffstat (limited to 'src/rps/rps-sampler_client.c')
-rw-r--r--src/rps/rps-sampler_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rps/rps-sampler_client.c b/src/rps/rps-sampler_client.c
index 4904b9d43..fea824cf3 100644
--- a/src/rps/rps-sampler_client.c
+++ b/src/rps/rps-sampler_client.c
@@ -205,7 +205,6 @@ RPS_sampler_mod_init (size_t init_size,
205 sampler->get_peers = sampler_mod_get_rand_peer; 205 sampler->get_peers = sampler_mod_get_rand_peer;
206 //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity); 206 //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity);
207 //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size); 207 //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size);
208 RPS_sampler_resize (sampler, init_size);
209 208
210 client_get_index = 0; 209 client_get_index = 0;
211 210
@@ -220,6 +219,7 @@ RPS_sampler_mod_init (size_t init_size,
220 to_file (sampler->file_name, 219 to_file (sampler->file_name,
221 "This is a modified sampler"); 220 "This is a modified sampler");
222#endif /* TO_FILE */ 221#endif /* TO_FILE */
222 RPS_sampler_resize (sampler, init_size);
223 223
224 return sampler; 224 return sampler;
225} 225}