From: Yu Watanabe Date: Fri, 18 Apr 2025 19:49:11 +0000 (+0900) Subject: bootctl: fix typo X-Git-Tag: v258-rc1~776 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cdf3339c56e0ed7cbb8f4b091af8c607f865002a;p=thirdparty%2Fsystemd.git bootctl: fix typo Follow-up for bbeeea43625d22d2ab92b26ed93378acbad8ca66. --- diff --git a/src/bootctl/bootctl.c b/src/bootctl/bootctl.c index 0c1ee867d7a..047b79254d2 100644 --- a/src/bootctl/bootctl.c +++ b/src/bootctl/bootctl.c @@ -215,7 +215,7 @@ static int print_loader_or_stub_path(void) { bool touch_variables(void) { /* If we run in a container or on a non-EFI system, automatically turn off EFI file system access, - * unless explicitly overriden. */ + * unless explicitly overridden. */ if (arg_touch_variables >= 0) return arg_touch_variables; @@ -388,7 +388,7 @@ static int parse_argv(int argc, char *argv[]) { { "print-stub-path", no_argument, NULL, ARG_PRINT_STUB_PATH }, { "print-root-device", no_argument, NULL, 'R' }, { "variables", required_argument, NULL, ARG_VARIABLES }, - { "no-variables", no_argument, NULL, ARG_NO_VARIABLES }, /* Compability */ + { "no-variables", no_argument, NULL, ARG_NO_VARIABLES }, /* Compatibility alias */ { "random-seed", required_argument, NULL, ARG_RANDOM_SEED }, { "no-pager", no_argument, NULL, ARG_NO_PAGER }, { "graceful", no_argument, NULL, ARG_GRACEFUL },