mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-20 15:03:44 +02:00
util/nvmutil: fix typo in unveil call
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -242,8 +242,8 @@ main(int argc, char *argv[])
|
|||||||
err(errno, "%s: unveil rw", f->tname);
|
err(errno, "%s: unveil rw", f->tname);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unveil(tname, "rwc") == -1)
|
if (unveil(f->tname, "rwc") == -1)
|
||||||
err(errno, "%s: unveil rwc", tname);
|
err(errno, "%s: unveil rwc", f->tname);
|
||||||
|
|
||||||
if (unveil(NULL, NULL) == -1)
|
if (unveil(NULL, NULL) == -1)
|
||||||
err(errno, "unveil block (rw)");
|
err(errno, "unveil block (rw)");
|
||||||
|
|||||||
Reference in New Issue
Block a user