diff options
Diffstat (limited to 'common/cmd_nvedit.c')
| -rw-r--r-- | common/cmd_nvedit.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index f4e306ceba9..e6c33956e7b 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -25,6 +25,7 @@   */  #include <common.h> +#include <cli.h>  #include <command.h>  #include <environment.h>  #include <search.h> @@ -408,7 +409,7 @@ int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  		return 1;  	/* prompt for input */ -	len = readline(message); +	len = cli_readline(message);  	if (size < len)  		console_buffer[size] = '\0'; @@ -591,7 +592,7 @@ static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,  	else  		buffer[0] = '\0'; -	if (readline_into_buffer("edit: ", buffer, 0) < 0) +	if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)  		return 1;  	return setenv(argv[1], buffer); | 
