aboutsummaryrefslogtreecommitdiffstats
path: root/community/rng-tools/901468598270db9c9f19f63f9812a94f5a44a487.patch
blob: d2ebdeee0345a044de7a5f22fde251c4c3630ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 901468598270db9c9f19f63f9812a94f5a44a487 Mon Sep 17 00:00:00 2001
From: Neil Horman <nhorman@tuxdriver.com>
Date: Tue, 20 Nov 2018 11:31:29 -0500
Subject: [PATCH] Fix build break on ppc

didn't update the rng options properly for rng_darn.c

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
---
 rngd_darn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rngd_darn.c b/rngd_darn.c
index 45c81c7..abd34b0 100644
--- a/rngd_darn.c
+++ b/rngd_darn.c
@@ -126,7 +126,7 @@ static int refill_rand(struct rng *ent_src)
 
 	if (darn_buf_avail)
 		return 0;
-	if (ent_src->options[DARN_USE_AES].int_val) {
+	if (ent_src->rng_options[DARN_OPT_AES].int_val) {
 		if (rand_bytes_served >= rekey_thresh) {
 			message(LOG_DAEMON|LOG_DEBUG, "rekeying DARN rng\n");
 			gcry_cipher_close(gcry_cipher_hd);