mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-22 22:03:43 +03:00
boot: Fix missed argument to Print()
This fixes 3e87a057a796b57bf9540b948823fbefef6693d7, which passed the path to the wrong Print() call. Miraculously, this was printing the correct path during testing and was therefore missed.
This commit is contained in:
parent
0eb635ef4b
commit
bb4e8820c1
@ -44,12 +44,12 @@ EFI_STATUS secure_boot_enroll_at(EFI_FILE *root_dir, const char16_t *path) {
|
||||
|
||||
clear_screen(COLOR_NORMAL);
|
||||
|
||||
Print(u"Enrolling secure boot keys from directory: %s\n");
|
||||
Print(u"Enrolling secure boot keys from directory: %s\n", path);
|
||||
|
||||
/* Enrolling secure boot keys is safe to do in virtualized environments as there is nothing
|
||||
* we can brick there. */
|
||||
if (!in_hypervisor()) {
|
||||
Print(u"Warning: Enrolling custom Secure Boot keys might soft-brick your machine!\n", path);
|
||||
Print(u"Warning: Enrolling custom Secure Boot keys might soft-brick your machine!\n");
|
||||
|
||||
unsigned timeout_sec = 15;
|
||||
for (;;) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user