From: Nick Mathewson Date: Wed, 9 Oct 2019 16:59:22 +0000 (-0400) Subject: weakrng.h: use COCCI to hide a macro coccinelle cannot parse. X-Git-Tag: tor-0.4.3.1-alpha~262^2~1^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb4b6b64360659d7f9807fe9284cf3eab2e64ff3;p=thirdparty%2Ftor.git weakrng.h: use COCCI to hide a macro coccinelle cannot parse. --- diff --git a/src/lib/intmath/weakrng.h b/src/lib/intmath/weakrng.h index 40941e59b2..d583c8f79b 100644 --- a/src/lib/intmath/weakrng.h +++ b/src/lib/intmath/weakrng.h @@ -19,8 +19,11 @@ typedef struct tor_weak_rng_t { uint32_t state; } tor_weak_rng_t; +#ifndef COCCI #define TOR_WEAK_RNG_INIT {383745623} +#endif #define TOR_WEAK_RANDOM_MAX (INT_MAX) + void tor_init_weak_random(tor_weak_rng_t *weak_rng, unsigned seed); int32_t tor_weak_random(tor_weak_rng_t *weak_rng); int32_t tor_weak_random_range(tor_weak_rng_t *rng, int32_t top);