diff options
author | Michael Brown | 2011-03-23 19:11:11 +0100 |
---|---|---|
committer | Michael Brown | 2011-03-23 19:11:52 +0100 |
commit | 963ae338151f78bdb1691520d9d5c8ff4f063fd1 (patch) | |
tree | 3b9cf45fa107eab73ad0298d37af593ff1d10d6f /src/hci/tui | |
parent | [undi] Cope with devices that erroneously claim not to use interrupts (diff) | |
download | ipxe-963ae338151f78bdb1691520d9d5c8ff4f063fd1.tar.gz ipxe-963ae338151f78bdb1691520d9d5c8ff4f063fd1.tar.xz ipxe-963ae338151f78bdb1691520d9d5c8ff4f063fd1.zip |
[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 <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/tui')
-rw-r--r-- | src/hci/tui/settings_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); } |