From: mr-bronson Date: Sun, 18 Aug 2024 00:49:27 +0000 (+0000) Subject: fdisk: fix SGI boot file prompt X-Git-Tag: v2.42-start~237^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=50f2c94846d737afc00692ed440e5e1f02281f6e;p=thirdparty%2Futil-linux.git fdisk: fix SGI boot file prompt Prompt was clearly missing something. --- diff --git a/libfdisk/src/sgi.c b/libfdisk/src/sgi.c index 23aafd9e3..f2f5073f5 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) {