broadcom-wl: fix whitespace handling

Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38751 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Hauke Mehrtens 2013-11-11 21:59:07 +00:00
parent e0eac9d976
commit 0b42a2d718
1 changed files with 3 additions and 3 deletions

View File

@ -1104,14 +1104,14 @@ int main(int argc, char **argv)
if (!*s)
continue;
if ((s2 = strchr(buf, ' ')) != NULL)
if ((s2 = strchr(s, ' ')) != NULL)
*(s2++) = 0;
while (s2 && isspace(*s2))
s2++;
if ((call = find_cmd(buf)) == NULL) {
fprintf(stderr, "Invalid command: %s\n", buf);
if ((call = find_cmd(s)) == NULL) {
fprintf(stderr, "Invalid command: %s\n", s);
ret = -1;
} else
ret = do_command(call, ((call->param & NOARG) ? NULL : s2));