You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
730 B
24 lines
730 B
8 months ago
|
From 56f614a5d6305dc1d304c30438db5b394d16e2da Mon Sep 17 00:00:00 2001
|
||
|
From: Michal Sekletar <msekleta@redhat.com>
|
||
|
Date: Fri, 12 Oct 2018 13:58:34 +0000
|
||
|
Subject: [PATCH] random-seed: raise POOL_SIZE_MIN constant to 1024
|
||
|
|
||
|
Resolves: #1619268
|
||
|
---
|
||
|
src/random-seed/random-seed.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/random-seed/random-seed.c b/src/random-seed/random-seed.c
|
||
|
index 223b56306c..adc9f298c1 100644
|
||
|
--- a/src/random-seed/random-seed.c
|
||
|
+++ b/src/random-seed/random-seed.c
|
||
|
@@ -14,7 +14,7 @@
|
||
|
#include "string-util.h"
|
||
|
#include "util.h"
|
||
|
|
||
|
-#define POOL_SIZE_MIN 512
|
||
|
+#define POOL_SIZE_MIN 1024
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
_cleanup_close_ int seed_fd = -1, random_fd = -1;
|