bootctl: log message tweaks

Follow-up for e44c3229f2.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-07-26 15:05:18 +02:00
parent 1774d03fb2
commit a4d208018c

View file

@ -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;