]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix documentation of initialized fields in crypto_init.c
authorNick Mathewson <nickm@torproject.org>
Tue, 4 Sep 2018 14:51:26 +0000 (10:51 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 4 Sep 2018 18:52:35 +0000 (14:52 -0400)
src/lib/crypt_ops/crypto_init.c

index 6fc8e5d94c523a9cf8049e59d50431a00f3dd979..c731662d49db1893a5162710339e05e2ec5fc403 100644 (file)
 
 #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;