From fc178cf1f82bc0f7e6e3637ea1bde7a5383329a9 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Thu, 26 May 2022 10:01:03 +0200 Subject: [PATCH] boot: Use strtolower8/16 --- src/boot/efi/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 68e3e7049cd..adac70d0f04 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -1548,7 +1548,7 @@ static void config_entry_add_type1( entry->device = device; entry->id = xstrdup(file); - StrLwr(entry->id); + strtolower16(entry->id); config_add_entry(config, entry); @@ -2209,7 +2209,7 @@ static void config_entry_add_unified( .tries_left = UINTN_MAX, }; - StrLwr(entry->id); + strtolower16(entry->id); config_add_entry(config, entry); config_entry_parse_tries(entry, L"\\EFI\\Linux", f->FileName, L".efi"); -- 2.47.3