From 963ae338151f78bdb1691520d9d5c8ff4f063fd1 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 23 Mar 2011 18:11:11 +0000 Subject: [PATCH] [settings] Match terminology used elsewhere iPXE documentation tends to refer to "settings" rather than "options", since settings can be more general than DHCP options. Signed-off-by: Michael Brown --- src/hci/tui/settings_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index b33d929a..b2f7d672 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -330,7 +330,7 @@ static void draw_title_row ( struct setting_widget *widget ) { clearmsg ( TITLE_ROW ); name = settings_name ( widget->settings ); attron ( A_BOLD ); - msg ( TITLE_ROW, "iPXE option configuration%s%s", + msg ( TITLE_ROW, "iPXE configuration settings%s%s", ( name[0] ? " - " : "" ), name ); attroff ( A_BOLD ); }