Blame SOURCES/0021-random-seed-raise-POOL_SIZE_MIN-constant-to-1024.patch

a3e2b5
From 56f614a5d6305dc1d304c30438db5b394d16e2da Mon Sep 17 00:00:00 2001
a3e2b5
From: Michal Sekletar <msekleta@redhat.com>
a3e2b5
Date: Fri, 12 Oct 2018 13:58:34 +0000
a3e2b5
Subject: [PATCH] random-seed: raise POOL_SIZE_MIN constant to 1024
a3e2b5
a3e2b5
Resolves: #1619268
a3e2b5
---
a3e2b5
 src/random-seed/random-seed.c | 2 +-
a3e2b5
 1 file changed, 1 insertion(+), 1 deletion(-)
a3e2b5
a3e2b5
diff --git a/src/random-seed/random-seed.c b/src/random-seed/random-seed.c
a3e2b5
index 223b56306c..adc9f298c1 100644
a3e2b5
--- a/src/random-seed/random-seed.c
a3e2b5
+++ b/src/random-seed/random-seed.c
a3e2b5
@@ -14,7 +14,7 @@
a3e2b5
 #include "string-util.h"
a3e2b5
 #include "util.h"
a3e2b5
 
a3e2b5
-#define POOL_SIZE_MIN 512
a3e2b5
+#define POOL_SIZE_MIN 1024
a3e2b5
 
a3e2b5
 int main(int argc, char *argv[]) {
a3e2b5
         _cleanup_close_ int seed_fd = -1, random_fd = -1;