projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0eac9d
)
broadcom-wl: fix whitespace handling
author
Hauke Mehrtens
<hauke@openwrt.org>
Mon, 11 Nov 2013 21:59:07 +0000
(21:59 +0000)
committer
Hauke Mehrtens
<hauke@openwrt.org>
Mon, 11 Nov 2013 21:59:07 +0000
(21:59 +0000)
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38751
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/kernel/broadcom-wl/src/wlc.c
patch
|
blob
|
history
diff --git
a/package/kernel/broadcom-wl/src/wlc.c
b/package/kernel/broadcom-wl/src/wlc.c
index
7b21ea0
..
9f4abc0
100644
(file)
--- 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));