From 37923ef6ad5431d61bedba96c64c74c0aa91c158 Mon Sep 17 00:00:00 2001 From: mr-bronson Date: Sun, 18 Aug 2024 00:49:27 +0000 Subject: [PATCH] fdisk: fix SGI boot file prompt Prompt was clearly missing something. (cherry picked from commit 50f2c94846d737afc00692ed440e5e1f02281f6e) --- libfdisk/src/sgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfdisk/src/sgi.c b/libfdisk/src/sgi.c index 23aafd9e34..f2f5073f50 100644 --- a/libfdisk/src/sgi.c +++ b/libfdisk/src/sgi.c @@ -443,7 +443,7 @@ int fdisk_sgi_set_bootfile(struct fdisk_context *cxt) fdisk_info(cxt, _("The current boot file is: %s"), sgilabel->boot_file); - rc = fdisk_ask_string(cxt, _("Enter of the new boot file"), &name); + rc = fdisk_ask_string(cxt, _("Enter full path of the new boot file"), &name); if (rc == 0) rc = sgi_check_bootfile(cxt, name); if (rc) { -- 2.47.2