From f8f407d66a4389035852a229a6945cc08a64b198 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 May 2015 16:17:03 -0400 Subject: Now that OpenSSL 0.9.8 is dead, crypto_seed_rng() needs no args It needed an argument before because it wasn't safe to call RAND_poll() on openssl 0.9.8c if you had already opened more fds than would fit in fd_set. --- src/test/testing_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/testing_common.c') diff --git a/src/test/testing_common.c b/src/test/testing_common.c index 403c83bdd2..e0c0046d71 100644 --- a/src/test/testing_common.c +++ b/src/test/testing_common.c @@ -270,7 +270,7 @@ main(int c, const char **v) return 1; } crypto_set_tls_dh_prime(NULL); - crypto_seed_rng(1); + crypto_seed_rng(); rep_hist_init(); network_init(); setup_directory(); -- cgit v1.2.3-54-g00ecf