From: Zbigniew Jędrzejewski-Szmek Date: Fri, 26 Jul 2019 13:05:18 +0000 (+0200) Subject: bootctl: log message tweaks X-Git-Tag: v243-rc1~30^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13195%2Fhead;p=thirdparty%2Fsystemd.git bootctl: log message tweaks Follow-up for e44c3229f22459b189c1e79cb01fdb156672eb93. --- 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;