aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/broadcom-wl
diff options
context:
space:
mode:
Diffstat (limited to 'package/kernel/broadcom-wl')
-rw-r--r--package/kernel/broadcom-wl/src/wlc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/kernel/broadcom-wl/src/wlc.c b/package/kernel/broadcom-wl/src/wlc.c
index 7b21ea0e89..9f4abc04f9 100644
--- a/package/kernel/broadcom-wl/src/wlc.c
+++ b/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));