From 629fcf0e4844ed3b6db7bd50579302eeecab57a6 Mon Sep 17 00:00:00 2001 From: Michal Sekletar Date: Dec 15 2020 17:54:47 +0000 Subject: random-seed: raise POOL_SIZE_MIN constant to 1024 Resolves: #1619268 patch_name: 0021-random-seed-raise-POOL_SIZE_MIN-constant-to-1024.patch present_in_specfile: true location_in_specfile: 21 squash_commits: true --- diff --git a/src/random-seed/random-seed.c b/src/random-seed/random-seed.c index 223b563..adc9f29 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;