diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-31 08:50:48 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-31 08:50:48 +0100 |
commit | edf389d0768ccb53c6667ddc2792da618cf40cec (patch) | |
tree | 15744a342db12782c1bd5a68e1826c814830f4b0 /trans | |
parent | 34c71acbc9ae19575aa11a1b0f79b39ba02ba784 (diff) | |
download | hurd-edf389d0768ccb53c6667ddc2792da618cf40cec.tar.gz hurd-edf389d0768ccb53c6667ddc2792da618cf40cec.tar.bz2 hurd-edf389d0768ccb53c6667ddc2792da618cf40cec.zip |
random: try opening time from gnumach before from /dev/time
The system-wide random translator can access time from gnumach, while
/dev/time comes from storeio, and its libc initialization (starting from
glibc 2.34) uses /dev/random, which was thus bringing an initialization
loop.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trans/random.c b/trans/random.c index b409d39f..ae04e14f 100644 --- a/trans/random.c +++ b/trans/random.c @@ -77,9 +77,9 @@ pool_initialize (void) error (1, 0, "Initializing hash failed: %s", gcry_strerror (cerr)); - err = maptime_map (0, NULL, &mtime); + err = maptime_map (1, NULL, &mtime); if (err) - err = maptime_map (1, NULL, &mtime); + err = maptime_map (0, NULL, &mtime); if (err) error (1, err, "Failed to map time device"); } |