diff options
author | Michael Brown <mcb30@ipxe.org> | 2011-03-23 18:11:11 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2011-03-23 18:11:52 +0000 |
commit | 963ae338151f78bdb1691520d9d5c8ff4f063fd1 (patch) | |
tree | 3b9cf45fa107eab73ad0298d37af593ff1d10d6f /src/hci/tui | |
parent | b6ca3aa01f7cfd74484cc5cca216ce8df395f0c1 (diff) | |
download | ipxe-963ae338151f78bdb1691520d9d5c8ff4f063fd1.tar.gz |
[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 b33d929a0..b2f7d6728 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 ); } |