From: jiangchuangang Date: Tue, 23 Aug 2022 03:22:37 +0000 (+0800) Subject: fix typo X-Git-Tag: v252-rc1~372 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ed999cb5d6bdf824ba02a5c4614c8d6ebe40dba;p=thirdparty%2Fsystemd.git fix typo --- diff --git a/src/core/efi-random.c b/src/core/efi-random.c index e8d8ccd1175..4086b12739d 100644 --- a/src/core/efi-random.c +++ b/src/core/efi-random.c @@ -76,7 +76,7 @@ int efi_take_random_seed(void) { return log_warning_errno(SYNTHETIC_ERRNO(EINVAL), "Random seed passed from boot loader has zero size? Ignoring."); /* Before we use the seed, let's mark it as used, so that we never credit it twice. Also, it's a nice - * way to let users known that we successfully acquired entropy from the boot laoder. */ + * way to let users known that we successfully acquired entropy from the boot loader. */ r = touch("/run/systemd/efi-random-seed-taken"); if (r < 0) return log_warning_errno(r, "Unable to mark EFI random seed as used, not using it: %m");