From 9612ec00a5cfc5fecc0cbf7de63e14bbb89acbdf Mon Sep 17 00:00:00 2001
From: Daan De Meyer <daan.j.demeyer@gmail.com>
Date: Wed, 15 May 2024 12:26:33 +0200
Subject: [PATCH 0632/1160] core: Fix assertion in parse_smbios_strings()

(cherry picked from commit d02a41a9d4e5e250f5d817dd8cffd38e3db949e8)
---
 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 48f3160923..2f8ab069b2 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.33.0