Fixing compilation bustage by adding the missing && back.

This commit is contained in:
Tai-hwa Liang 2010-06-11 01:32:42 +00:00
parent 08b300a1b7
commit ca765120a8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209022

View File

@ -584,7 +584,7 @@ sta_input(struct ieee80211_node *ni, struct mbuf *m, int rssi, int nf)
}
IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
ni->ni_noise = nf;
if (HAS_SEQ(type) !IEEE80211_IS_MULTICAST(wh->i_addr1)) {
if (HAS_SEQ(type) && !IEEE80211_IS_MULTICAST(wh->i_addr1)) {
uint8_t tid = ieee80211_gettid(wh);
if (IEEE80211_QOS_HAS_SEQ(wh) &&
TID_TO_WME_AC(tid) >= WME_AC_VI)