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.
31 lines
1.1 KiB
31 lines
1.1 KiB
From 494ebc9dc491ab378851ee75562796b32e9a98ea Mon Sep 17 00:00:00 2001
|
|
From: Franck Bui <fbui@suse.com>
|
|
Date: Thu, 20 Oct 2022 08:52:10 +0200
|
|
Subject: [PATCH] random-seed: no need to pass 'mode' argument when opening
|
|
/dev/urandom
|
|
|
|
The open() call is not supposed to create /dev/urandom.
|
|
|
|
No functional change.
|
|
|
|
(cherry picked from commit 4620c0af5dc7a46ed3e213568e99d8a82c44553d)
|
|
|
|
Related: RHEL-16952
|
|
---
|
|
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 5b5629d817..4b8138ca03 100644
|
|
--- a/src/random-seed/random-seed.c
|
|
+++ b/src/random-seed/random-seed.c
|
|
@@ -248,7 +248,7 @@ static int run(int argc, char *argv[]) {
|
|
} else
|
|
write_seed_file = true;
|
|
|
|
- random_fd = open("/dev/urandom", O_RDWR|O_CLOEXEC|O_NOCTTY, 0600);
|
|
+ random_fd = open("/dev/urandom", O_RDWR|O_CLOEXEC|O_NOCTTY);
|
|
if (random_fd < 0)
|
|
return log_error_errno(errno, "Failed to open /dev/urandom: %m");
|
|
|