diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-04 10:51:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-04 14:52:35 -0400 |
commit | 70c27b7e39b9437bf18c0342b15a5c6a3022e204 (patch) | |
tree | b1dbdf0460906343311e56d21932e6d5fdc6ea8e /src | |
parent | 3b10108a2abec89a9f1f8ba57a99a8b10a67515c (diff) | |
download | tor-70c27b7e39b9437bf18c0342b15a5c6a3022e204.tar.gz tor-70c27b7e39b9437bf18c0342b15a5c6a3022e204.zip |
Fix documentation of initialized fields in crypto_init.c
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/crypt_ops/crypto_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/crypt_ops/crypto_init.c b/src/lib/crypt_ops/crypto_init.c index 6fc8e5d94c..c731662d49 100644 --- a/src/lib/crypt_ops/crypto_init.c +++ b/src/lib/crypt_ops/crypto_init.c @@ -23,10 +23,10 @@ #include "siphash.h" -/** Boolean: has OpenSSL's crypto been initialized? */ +/** Boolean: has our crypto library been initialized? (early phase) */ static int crypto_early_initialized_ = 0; -/** Boolean: has OpenSSL's crypto been initialized? */ +/** Boolean: has our crypto library been initialized? (late phase) */ static int crypto_global_initialized_ = 0; static int have_seeded_siphash = 0; |