diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-05-19 16:17:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-05-20 15:27:36 -0400 |
commit | f8f407d66a4389035852a229a6945cc08a64b198 (patch) | |
tree | 527054f001d4f1ab0f6ddcbd4727a2a5333debef /src/tools | |
parent | 971f0f8e18c0f3ea9f2aa74a54951235269a1cd1 (diff) | |
download | tor-f8f407d66a4389035852a229a6945cc08a64b198.tar.gz tor-f8f407d66a4389035852a229a6945cc08a64b198.zip |
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.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/tor-gencert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c index c599822e07..b83682ae3d 100644 --- a/src/tools/tor-gencert.c +++ b/src/tools/tor-gencert.c @@ -532,7 +532,7 @@ main(int argc, char **argv) fprintf(stderr, "Couldn't initialize crypto library.\n"); return 1; } - if (crypto_seed_rng(1)) { + if (crypto_seed_rng()) { fprintf(stderr, "Couldn't seed RNG.\n"); goto done; } |