From: Antonio Alvarez Feijoo Date: Mon, 8 Sep 2025 10:30:35 +0000 (+0200) Subject: bootctl: fix reference to non-existent option in error log X-Git-Tag: v258~37^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=992716c9ab452457222cb1da2be34ce070ead309;p=thirdparty%2Fsystemd.git bootctl: fix reference to non-existent option in error log --- diff --git a/src/bootctl/bootctl.c b/src/bootctl/bootctl.c index 192f9ddb603..52066e29990 100644 --- a/src/bootctl/bootctl.c +++ b/src/bootctl/bootctl.c @@ -652,7 +652,7 @@ static int parse_argv(int argc, char *argv[]) { return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--install-from-host is only supported with --root= or --image=."); if (arg_dry_run && argv[optind] && !STR_IN_SET(argv[optind], "unlink", "cleanup")) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--dry is only supported with --unlink or --cleanup"); + return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--dry-run is only supported with --unlink or --cleanup"); if (arg_secure_boot_auto_enroll && !arg_certificate) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Secure boot auto-enrollment requested but no certificate provided");