diff options
author | Ori Bernstein <ori@eigenstate.org> | 2017-08-27 02:33:39 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2017-08-27 02:33:39 -0700 |
commit | 0ffaabebcf294f1488a26f84c9f6ff3621d8319d (patch) | |
tree | 1cde7acb6c35bb1b7a11802b51f7aeb0a35657eb /lib/crypto/entropy.myr | |
parent | d27288db4ad5b2154c8c946029f8ed1943012286 (diff) | |
download | mc-0ffaabebcf294f1488a26f84c9f6ff3621d8319d.tar.gz |
Ordonly/Owronly => Oread/Owrite.
Diffstat (limited to 'lib/crypto/entropy.myr')
-rw-r--r-- | lib/crypto/entropy.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/entropy.myr b/lib/crypto/entropy.myr index b5c5120..8120791 100644 --- a/lib/crypto/entropy.myr +++ b/lib/crypto/entropy.myr @@ -7,7 +7,7 @@ pkg crypto = var randfd const __init__ = { - randfd = std.try(std.open("/dev/random", std.Ordonly)) + randfd = std.try(std.open("/dev/random", std.Oread)) } const getentropy = {buf |