summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/net80211/ieee80211_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_input.c b/sys/net80211/ieee80211_input.c
index 0ed2e94..7324082 100644
--- a/sys/net80211/ieee80211_input.c
+++ b/sys/net80211/ieee80211_input.c
@@ -216,8 +216,6 @@ ieee80211_input(struct ieee80211com *ic, struct mbuf *m,
}
bssid = wh->i_addr3;
}
- if (type != IEEE80211_FC0_TYPE_DATA)
- break;
/*
* Data frame, validate the bssid.
*/
@@ -229,6 +227,8 @@ ieee80211_input(struct ieee80211com *ic, struct mbuf *m,
ic->ic_stats.is_rx_wrongbss++;
goto out;
}
+ if (type != IEEE80211_FC0_TYPE_DATA)
+ break;
/*
* For adhoc mode we cons up a node when it doesn't
* exist. This should probably done after an ACL check.
OpenPOWER on IntegriCloud