diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-25 12:46:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-25 12:46:03 +0000 |
commit | d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8 (patch) | |
tree | 5f3775e14e05880c7977402384756e6ca3102096 /shell | |
parent | c8400a216206a848f6c4b83b668df37f6fb546ee (diff) | |
download | busybox-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.tar.gz |
use skip_whitespace where appropriate
Diffstat (limited to 'shell')
-rw-r--r-- | shell/bbsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/bbsh.c b/shell/bbsh.c index 77e186d35..791983a3a 100644 --- a/shell/bbsh.c +++ b/shell/bbsh.c @@ -119,7 +119,7 @@ static char *parse_pipeline(char *cmdline, struct pipeline *line) char *end; // Skip leading whitespace and detect end of line. - while (isspace(*start)) start++; + start = skip_whitespace(start); if (!*start || *start=='#') { if (ENABLE_BBSH_JOBCTL) line->cmdlinelen = start-cmdline; return 0; |