]> 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)
committermr-bronson <ghbugs@toeai.com>
Sun, 18 Aug 2024 00:49:27 +0000 (00:49 +0000)
Prompt was clearly missing something.

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) {