diff options
| author | Karel Zak <kzak@redhat.com> | 2013-05-17 15:11:11 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2013-09-16 16:46:55 +0200 |
| commit | 39f01b7b2ba982b79ddad8b90852920096c934e1 (patch) | |
| tree | f973f476171bf3ae654d9ad69eb2f696847fa0a1 /fdisks/fdisk-menu.c | |
| parent | 6ae5e1e09c6abbc89365c4f6133c04ef099ff20e (diff) | |
| download | util-linux-39f01b7b2ba982b79ddad8b90852920096c934e1.tar.gz | |
fdisk: use new menus
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'fdisks/fdisk-menu.c')
| -rw-r--r-- | fdisks/fdisk-menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fdisks/fdisk-menu.c b/fdisks/fdisk-menu.c index e6b38703..17ecdbab 100644 --- a/fdisks/fdisk-menu.c +++ b/fdisks/fdisk-menu.c @@ -276,7 +276,7 @@ static int menu_detect_collisions(struct fdisk_context *cxt) return 0; } -static int print_fdisk_menu(struct fdisk_context *cxt) +int print_fdisk_menu(struct fdisk_context *cxt) { struct menu_context mc = MENU_CXT_EMPTY; const struct menu_entry *e; @@ -284,9 +284,9 @@ static int print_fdisk_menu(struct fdisk_context *cxt) ON_DBG(CONTEXT, menu_detect_collisions(cxt)); if (fdisk_context_display_details(cxt)) - printf(_("\nExpert commands:\n")); + printf(_("\nHelp (expert commands):\n")); else - printf(_("\nCommands:\n")); + printf(_("\nHelp:\n")); while ((e = next_menu_entry(cxt, &mc))) { if (IS_MENU_HID(e)) |
