summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2009-01-23 00:12:31 +0000
committerChris Johns <chrisj@rtems.org>2009-01-23 00:12:31 +0000
commit731186395aba9bd8585ac77ff288ddfa0bc04c8b (patch)
tree664867d1a7c33c02c04a1938accc20b5479c9a25 /cpukit/libmisc/shell/shell.c
parentRemove. (diff)
downloadrtems-731186395aba9bd8585ac77ff288ddfa0bc04c8b.tar.bz2
2009-01-23 Chris Johns <chrisj@rtems.org>
* libmisc/shell/shell.c: Fix command line parsing of valid characters.
Diffstat (limited to 'cpukit/libmisc/shell/shell.c')
-rw-r--r--cpukit/libmisc/shell/shell.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 0a784ba712..e5ed33dc2b 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -311,7 +311,6 @@ int rtems_shell_line_editor(
break;
case '\b':
- case '\x7e':
case '\x7f':
if (col > 0)
{
@@ -353,7 +352,7 @@ int rtems_shell_line_editor(
return cmd;
default:
- if ((col < (size - 1)) && (c >= ' ') && (c <= 'z')) {
+ if ((col < (size - 1)) && (c >= ' ') && (c <= '~')) {
int end = strlen (line);
if (inserting && (col < end) && (end < size)) {
int ch, bs;