forked from Minki/linux
Staging: otus: 80211core: Fix &&/|| confusion
This always evaluates to true. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f3557cc180
commit
274350fe40
@ -2808,7 +2808,7 @@ void zfStaProcessProbeReq(zdev_t* dev, zbuf_t* buf, u16_t* src)
|
||||
zmw_get_wlan_dev(dev);
|
||||
|
||||
/* check mode : AP/IBSS */
|
||||
if ((wd->wlanMode != ZM_MODE_AP) || (wd->wlanMode != ZM_MODE_IBSS))
|
||||
if ((wd->wlanMode != ZM_MODE_AP) && (wd->wlanMode != ZM_MODE_IBSS))
|
||||
{
|
||||
zm_msg0_mm(ZM_LV_3, "Ignore probe req");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user