]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
fix typo
authorjiangchuangang <jiangchuangang@huawei.com>
Tue, 23 Aug 2022 03:22:37 +0000 (11:22 +0800)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 23 Aug 2022 07:23:49 +0000 (09:23 +0200)
src/core/efi-random.c

index e8d8ccd117518f74235d47980b7d464aa5c3bca4..4086b12739db86620f18ddcbf46d16e2519e3477 100644 (file)
@@ -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");