From 1982c51535ebf7103aa805f7c811abb5ef2d2a25 Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Tue, 5 Nov 2024 08:19:12 -0500 Subject: [PATCH] swtpm: Indent 'Tested' output of tested algorithm by one more space Move the 'Tested: tdes' type of debugging output one more indentation level up so that they can be filtered-out easier from control and data channel communication. Signed-off-by: Stefan Berger --- src/swtpm/check_algos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swtpm/check_algos.c b/src/swtpm/check_algos.c index 57ef7f3..de31282 100644 --- a/src/swtpm/check_algos.c +++ b/src/swtpm/check_algos.c @@ -582,7 +582,7 @@ _check_ossl_algorithms_are_disabled(const gchar *const*algorithms, disabled_type & DISABLED_BY_FIPS ? "(FIPS)" : "", display); } else { - logprintf(STDOUT_FILENO, " Tested: %s\n", display); + logprintf(STDOUT_FILENO, " Tested: %s\n", display); } } }