From 316387f61949cf4347d7fb5dd089f5a110f67e11 Mon Sep 17 00:00:00 2001 From: Sean Davis Date: Mon, 19 Sep 2016 16:06:03 -0500 Subject: [PATCH] Fix typo in rand-fortuna.c `__GNUC__` was written as `__GUNC__`, which could have interesting results as it'll never be defined. --- lib/hcrypto/rand-fortuna.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hcrypto/rand-fortuna.c b/lib/hcrypto/rand-fortuna.c index 76c9a6055..529bf8f30 100644 --- a/lib/hcrypto/rand-fortuna.c +++ b/lib/hcrypto/rand-fortuna.c @@ -622,7 +622,7 @@ fortuna_status(void) return result ? 1 : 0; } -#if defined(__GUNC__) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901) +#if defined(__GNUC__) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901) const RAND_METHOD hc_rand_fortuna_method = { .seed = fortuna_seed, .bytes = fortuna_bytes,