From: Yu Watanabe Date: Sun, 19 Mar 2023 19:37:49 +0000 (+0900) Subject: bootctl: fix wrong type comparison X-Git-Tag: v254-rc1~979 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de2c62e847f3b5b0c0796396086ebdce4e8a9ca4;p=thirdparty%2Fsystemd.git bootctl: fix wrong type comparison --- diff --git a/src/boot/bootctl-install.c b/src/boot/bootctl-install.c index f520fc7ffaa..6d356d640fb 100644 --- a/src/boot/bootctl-install.c +++ b/src/boot/bootctl-install.c @@ -133,7 +133,7 @@ static int settle_make_entry_directory(void) { bool layout_type1 = use_boot_loader_spec_type1(); if (arg_make_entry_directory < 0) { /* Automatic mode */ if (layout_type1) { - if (arg_entry_token == ARG_ENTRY_TOKEN_MACHINE_ID) { + if (arg_entry_token_type == ARG_ENTRY_TOKEN_MACHINE_ID) { r = path_is_temporary_fs("/etc/machine-id"); if (r < 0) return log_debug_errno(r, "Couldn't determine whether /etc/machine-id is on a temporary file system: %m");