mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
cli_readline: Only insert printable chars
There should be no need to insert non-printable characters and this prevents line editing getting confused. Signed-off-by: Steve Bennett <steveb@workware.net.au>
This commit is contained in:
parent
652b504ff2
commit
d2e64d29c4
1 changed files with 4 additions and 2 deletions
|
@ -493,8 +493,10 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len,
|
|||
}
|
||||
#endif
|
||||
default:
|
||||
cread_add_char(ichar, insert, &num, &eol_num, buf,
|
||||
*len);
|
||||
if (ichar >= ' ' && ichar <= '~') {
|
||||
cread_add_char(ichar, insert, &num, &eol_num,
|
||||
buf, *len);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue