]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fdisk: fix SGI boot file prompt
authormr-bronson <ghbugs@toeai.com>
Sun, 18 Aug 2024 00:49:27 +0000 (00:49 +0000)
committerKarel Zak <kzak@redhat.com>
Fri, 3 Jan 2025 11:21:42 +0000 (12:21 +0100)
Prompt was clearly missing something.

(cherry picked from commit 50f2c94846d737afc00692ed440e5e1f02281f6e)

libfdisk/src/sgi.c

index 23aafd9e340486e2c07e8288da6aab57e3f8820b..f2f5073f504e29cd59a0e699ace0d8341e1df63e 100644 (file)
@@ -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) {