From de2c62e847f3b5b0c0796396086ebdce4e8a9ca4 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 20 Mar 2023 04:37:49 +0900 Subject: bootctl: fix wrong type comparison --- src/boot/bootctl-install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/boot') diff --git a/src/boot/bootctl-install.c b/src/boot/bootctl-install.c index f520fc7ffa..6d356d640f 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"); -- cgit v1.2.1