From 461b05cc08416eec60514e7af068d75b11a59d7c Mon Sep 17 00:00:00 2001 From: jouyouyun Date: Mon, 3 Nov 2025 14:17:35 +0800 Subject: [PATCH] bootctl: fix typo (cherry picked from commit 49ca2d87780354c5bb791da06b926111b4522450) --- src/bootctl/bootctl-status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootctl/bootctl-status.c b/src/bootctl/bootctl-status.c index ea966cb1d25..462e0841549 100644 --- a/src/bootctl/bootctl-status.c +++ b/src/bootctl/bootctl-status.c @@ -572,7 +572,7 @@ int verb_status(int argc, char *argv[], void *userdata) { * to _either_ of them, print a warning. */ if (!sd_id128_is_null(esp_uuid) && !sd_id128_equal(stub_partition_uuid, esp_uuid) && !sd_id128_is_null(xbootldr_uuid) && !sd_id128_equal(stub_partition_uuid, xbootldr_uuid)) - printf("WARNING: The stub loader reports a different UUID than the detected ESP and XBOOTDLR partitions " + printf("WARNING: The stub loader reports a different UUID than the detected ESP and XBOOTLDR partitions " "("SD_ID128_UUID_FORMAT_STR" vs. "SD_ID128_UUID_FORMAT_STR"/"SD_ID128_UUID_FORMAT_STR")!\n", SD_ID128_FORMAT_VAL(stub_partition_uuid), SD_ID128_FORMAT_VAL(esp_uuid), -- 2.47.3