From 59fc6b3be31366cc146c083c17d00efc4e2d14b8 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 57ef7f31c..de312826b 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); } } }