broadcom-wl: fix whitespace handling

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

SVN-Revision: 38751
master
Hauke Mehrtens 11 years ago
parent 1439dc3b9b
commit 493f82e8ee
  1. 6
      package/kernel/broadcom-wl/src/wlc.c

@ -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));

Loading…
Cancel
Save