1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-03 05:18:09 +03:00

chid-fundamental: make namespace GUID static, too

This commit is contained in:
Lennart Poettering 2024-12-20 12:03:50 +01:00
parent d1bbfaeba5
commit f8988a5e45

View File

@ -35,11 +35,11 @@ static void get_chid(
assert(mask != 0); assert(mask != 0);
assert(ret_chid); assert(ret_chid);
const EFI_GUID namespace = { UINT32_C(0x12d8ff70), UINT16_C(0x7f4c), UINT16_C(0x7d4c), {} }; /* Swapped to BE */
struct sha1_ctx ctx = {}; struct sha1_ctx ctx = {};
sha1_init_ctx(&ctx); sha1_init_ctx(&ctx);
static const EFI_GUID namespace = { UINT32_C(0x12d8ff70), UINT16_C(0x7f4c), UINT16_C(0x7d4c), {} }; /* Swapped to BE */
sha1_process_bytes(&namespace, sizeof(namespace), &ctx); sha1_process_bytes(&namespace, sizeof(namespace), &ctx);
for (unsigned i = 0; i < _CHID_SMBIOS_FIELDS_MAX; i++) { for (unsigned i = 0; i < _CHID_SMBIOS_FIELDS_MAX; i++) {