diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-11-23 10:26:07 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-11-23 10:26:07 +1100 |
commit | 604d3ee48d5a407e525045138d45d40943b0eff6 (patch) | |
tree | 1b394a0ff9115e6498b943c0f7bdca3d2cc81e3d /src/common | |
parent | d3b7546753fbf37dfe2dc5dc774492c8d501409f (diff) | |
download | tor-604d3ee48d5a407e525045138d45d40943b0eff6.tar.gz tor-604d3ee48d5a407e525045138d45d40943b0eff6.zip |
Comment only: crypto_seed_rng no longer has a "startup" parameter
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index 7b38568360..f5f9bbef0d 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -2335,8 +2335,7 @@ crypto_strongest_rand(uint8_t *out, size_t out_len) } /** Seed OpenSSL's random number generator with bytes from the operating - * system. <b>startup</b> should be true iff we have just started Tor and - * have not yet allocated a bunch of fds. Return 0 on success, -1 on failure. + * system. Return 0 on success, -1 on failure. */ int crypto_seed_rng(void) |