From: Jan Janssen Date: Thu, 26 May 2022 08:01:03 +0000 (+0200) Subject: boot: Use strtolower8/16 X-Git-Tag: v252-rc1~892^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc178cf1f82bc0f7e6e3637ea1bde7a5383329a9;p=thirdparty%2Fsystemd.git boot: Use strtolower8/16 --- 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");