]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove two wrong comments
authorSebastian Hahn <sebastian@torproject.org>
Mon, 4 Jul 2016 07:57:36 +0000 (09:57 +0200)
committerSebastian Hahn <sebastian@torproject.org>
Mon, 4 Jul 2016 10:26:14 +0000 (12:26 +0200)
src/common/compat_libevent.c

index 4469f15ac73ec2fecaf9659593dc7e01ccea071e..e1b03100c5a9321e3435cad8178950f8e56baa31 100644 (file)
@@ -234,8 +234,6 @@ tor_libevent_initialize(tor_libevent_cfg *torcfg)
     /* LCOV_EXCL_STOP */
   }
 
-  /* Making this a NOTICE for now so we can link bugs to a libevent versions
-   * or methods better. */
   log_info(LD_GENERAL,
       "Initialized libevent version %s using method %s. Good.",
       event_get_version(), tor_libevent_get_method());
@@ -546,7 +544,6 @@ tor_init_libevent_rng(void)
   if (evutil_secure_rng_init() < 0) {
     rv = -1;
   }
-  /* Older libevent -- manually initialize the RNG */
   crypto_rand(buf, 32);
   evutil_secure_rng_add_bytes(buf, 32);
   evutil_secure_rng_get_bytes(buf, sizeof(buf));