diff options
author | Michael Brown | 2009-02-17 12:55:55 +0100 |
---|---|---|
committer | Michael Brown | 2009-02-17 12:55:55 +0100 |
commit | 67ee41ad6d3cbd137e390e61a17eac8eaddc30fa (patch) | |
tree | e9f5ecabec095baafacb5b777731b49a98cabe70 /src/hci/tui | |
parent | [pxe] Allow Escape to abort PXE menu selections (diff) | |
download | ipxe-67ee41ad6d3cbd137e390e61a17eac8eaddc30fa.tar.gz ipxe-67ee41ad6d3cbd137e390e61a17eac8eaddc30fa.tar.xz ipxe-67ee41ad6d3cbd137e390e61a17eac8eaddc30fa.zip |
[editbox] Allow for password widgets that do not display their contents
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 0907bfd3..4ab38270 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -123,7 +123,7 @@ static void load_setting ( struct setting_widget *widget ) { init_editbox ( &widget->editbox, widget->value, sizeof ( widget->value ), NULL, widget->row, ( widget->col + offsetof ( struct setting_row, value )), - sizeof ( ( ( struct setting_row * ) NULL )->value ) ); + sizeof ( ( ( struct setting_row * ) NULL )->value ), 0); } /** |