diff options
Diffstat (limited to 'common/menu.c')
| -rw-r--r-- | common/menu.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/menu.c b/common/menu.c index 5e0817c45..3b1e0d082 100644 --- a/common/menu.c +++ b/common/menu.c @@ -222,7 +222,8 @@ static inline int menu_interactive_choice(struct menu *m, void **choice)  		menu_display(m); -		readret = readline_into_buffer("Enter choice: ", cbuf); +		readret = readline_into_buffer("Enter choice: ", cbuf, +				m->timeout);  		if (readret >= 0) {  			choice_item = menu_item_by_key(m, cbuf); |