From d02a41a9d4e5e250f5d817dd8cffd38e3db949e8 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Wed, 15 May 2024 12:26:33 +0200 Subject: [PATCH] core: Fix assertion in parse_smbios_strings() --- src/core/import-creds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/import-creds.c b/src/core/import-creds.c index 90d87e078d3..f27ffed4a0d 100644 --- a/src/core/import-creds.c +++ b/src/core/import-creds.c @@ -519,7 +519,7 @@ static int parse_smbios_strings(ImportCredentialContext *c, const char *data, si return log_oom(); if (!credential_name_valid(cn)) { - log_warning("SMBIOS credential name '%s' is not valid, ignoring: %m", cn); + log_warning("SMBIOS credential name '%s' is not valid, ignoring.", cn); continue; } -- 2.47.3