1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-08 20:58:20 +03:00

efi-string: Remove one more |= for bool

This one was missed in #23589.
This commit is contained in:
Jan Janssen 2022-06-10 09:32:34 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent e538d59367
commit f23b2a04e6

View File

@ -193,7 +193,8 @@ static bool efi_fnmatch_internal(const char16_t *p, const char16_t *h, int max_d
p++;
if (*p == '\0')
return false;
match |= *p == *h;
if (*p == *h)
match = true;
can_range = true;
continue;
}