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:
95b3aa4
)
[package] iwinfo: fix logic flaw in WPA OUI filtering, solves misdetecting various...
author
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 21 Feb 2012 18:19:26 +0000
(18:19 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 21 Feb 2012 18:19:26 +0000
(18:19 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30672
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/iwinfo/src/iwinfo_wext_scan.c
patch
|
blob
|
history
diff --git
a/package/iwinfo/src/iwinfo_wext_scan.c
b/package/iwinfo/src/iwinfo_wext_scan.c
index
11725c9
..
de02587
100644
(file)
--- a/
package/iwinfo/src/iwinfo_wext_scan.c
+++ b/
package/iwinfo/src/iwinfo_wext_scan.c
@@
-246,7
+246,7
@@
static inline void wext_fill_wpa(unsigned char *iebuf, int buflen, struct iwinfo
/* Not all IEs that start with 0xdd are WPA.
* * So check that the OUI is valid. */
if((ielen < 8) || ((memcmp(&iebuf[offset], wpa_oui, 3) != 0)
-
&& (iebuf[offset+3] =
= 0x01)))
+
|| (iebuf[offset+3] !
= 0x01)))
return;
offset += 4;