From 46536e1d6cfcd918971b198c6b72ffb7c66c941f Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 5 Oct 2024 12:20:50 +0200 Subject: [PATCH] efi-loader: Add @ to valid characters This is now a valid character with the introduction of multi UKI profiles, so update the function to allow it. --- src/shared/efi-loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/efi-loader.c b/src/shared/efi-loader.c index 74144af95a..ae0b2b1fdc 100644 --- a/src/shared/efi-loader.c +++ b/src/shared/efi-loader.c @@ -364,5 +364,5 @@ bool efi_loader_entry_name_valid(const char *s) { if (!filename_is_valid(s)) /* Make sure entry names fit in filenames */ return false; - return in_charset(s, ALPHANUMERICAL "+-_."); + return in_charset(s, ALPHANUMERICAL "+-_.@"); } -- 2.25.1