From a4d208018c369e422ee48cd7fb1b4b57787e2618 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 26 Jul 2019 15:05:18 +0200 Subject: [PATCH] bootctl: log message tweaks Follow-up for e44c3229f22459b189c1e79cb01fdb156672eb93. --- src/boot/bootctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index e7cf73e1a11..9ecd9f78f3f 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -1361,7 +1361,7 @@ static int install_random_seed(const char *esp) { r = genuine_random_bytes(buffer, sz, RANDOM_BLOCK); if (r < 0) - return log_error_errno(r, "Faile to acquire random seed: %m"); + return log_error_errno(r, "Failed to acquire random seed: %m"); r = tempfn_random(path, "bootctl", &tmp); if (r < 0) @@ -1384,7 +1384,7 @@ static int install_random_seed(const char *esp) { tmp = mfree(tmp); - log_info("Successfully written random seed file %s with %zu bytes.", path, sz); + log_info("Random seed file %s successfully written (%zu bytes).", path, sz); if (!arg_touch_variables) return 0; -- 2.47.3