summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_parse.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-16 07:30:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-16 07:30:15 -0600
commit4473883c0a6707090b82ea875f82a6e67f64c763 (patch)
tree78b71d6ac8f0c5a8580a57bab1b045236d7c8bf3 /apps/nshlib/nsh_parse.c
parent12028015e8205daec6be01b779ad04565c0f52b2 (diff)
downloadnuttx-4473883c0a6707090b82ea875f82a6e67f64c763.tar.gz
nuttx-4473883c0a6707090b82ea875f82a6e67f64c763.tar.bz2
nuttx-4473883c0a6707090b82ea875f82a6e67f64c763.zip
NSH: Fix redirection of output to a file. That was broken with recent changes
Diffstat (limited to 'apps/nshlib/nsh_parse.c')
-rw-r--r--apps/nshlib/nsh_parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/nshlib/nsh_parse.c b/apps/nshlib/nsh_parse.c
index 4ac6980df..c7ef521a1 100644
--- a/apps/nshlib/nsh_parse.c
+++ b/apps/nshlib/nsh_parse.c
@@ -1216,12 +1216,12 @@ static FAR char *nsh_argument(FAR struct nsh_vtbl_s *vtbl, FAR char **saveptr,
if (*(pbegin + 1) == '>')
{
*saveptr = pbegin + 2;
- pbegin = (char*)g_redirect2;
+ argument = (FAR char *)g_redirect2;
}
else
{
*saveptr = pbegin + 1;
- pbegin = (char*)g_redirect1;
+ argument = (FAR char *)g_redirect1;
}
}
@@ -1232,7 +1232,7 @@ static FAR char *nsh_argument(FAR struct nsh_vtbl_s *vtbl, FAR char **saveptr,
/* Return NULL meaning that we are at the end of the line */
*saveptr = pbegin;
- pbegin = NULL;
+ argument = NULL;
}
/* Otherwise, it is a normal argument and we have to parse using the normal