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-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.tar.gz busybox-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.tar.bz2 busybox-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.zip |
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) | |||
119 | char *end; | 119 | char *end; |
120 | 120 | ||
121 | // Skip leading whitespace and detect end of line. | 121 | // Skip leading whitespace and detect end of line. |
122 | while (isspace(*start)) start++; | 122 | start = skip_whitespace(start); |
123 | if (!*start || *start=='#') { | 123 | if (!*start || *start=='#') { |
124 | if (ENABLE_BBSH_JOBCTL) line->cmdlinelen = start-cmdline; | 124 | if (ENABLE_BBSH_JOBCTL) line->cmdlinelen = start-cmdline; |
125 | return 0; | 125 | return 0; |