diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-24 17:03:31 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-24 17:03:31 +0000 |
commit | deb307eaf6312f06ee445bf21c617c079d0cd679 (patch) | |
tree | 713a83525e58f9fdfb04ffa10496ef62a22c4d95 /util/nvmutil/nvmutil.c | |
parent | c14eccaf153d56f01af8cba685a21df486f4dd5e (diff) |
util/nvmutil: more minor cleanup
just some line breaks
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil/nvmutil.c')
-rw-r--r-- | util/nvmutil/nvmutil.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 250350a6..1eefa08b 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -94,10 +94,13 @@ main(int argc, char *argv[]) is critical because we only want *file* accesses. */ checkdir("/dev/urandom"); checkdir(filename); /* Must be a file, not a directory */ + #ifdef __OpenBSD__ /* OpenBSD sandboxing: https://man.openbsd.org/pledge.2 */ /* Also: https://man.openbsd.org/unveil.2 */ + err_if(unveil("/dev/urandom", "r") == -1); + if (flags == O_RDONLY) { /* write not needed for dump command */ err_if(unveil(filename, "r") == -1); err_if(pledge("stdio rpath", NULL) == -1); |