From: Lennart Poettering Date: Tue, 9 Nov 2021 22:57:49 +0000 (+0100) Subject: boot: when we can't boot use the right boot loader entry display title in log message X-Git-Tag: v250-rc1~300^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df331784164226e6f9f3caf36a07a22f9ef4d19d;p=thirdparty%2Fsystemd.git boot: when we can't boot use the right boot loader entry display title in log message --- diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 89888c3aa9a..ccbdca22718 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -2498,7 +2498,7 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) { err = image_start(root_dir, image, &config, entry); if (EFI_ERROR(err)) { graphics_mode(FALSE); - log_error_stall(L"Failed to execute %s (%s): %r", entry->title, entry->loader, err); + log_error_stall(L"Failed to execute %s (%s): %r", entry->title_show, entry->loader, err); goto out; }