Author: avatar
Date: Fri Jun 11 01:32:42 2010
New Revision: 209022
URL: http://svn.freebsd.org/changeset/base/209022
Log:
Fixing compilation bustage by adding the missing && back.
Modified:
head/sys/net80211/ieee80211_sta.c
Modified: head/sys/net80211/ieee80211_sta.c
==============================================================================
--- head/sys/net80211/ieee80211_sta.c Thu Jun 10 22:47:04 2010
(r209021)
+++ head/sys/net80211/ieee80211_sta.c Fri Jun 11 01:32:42 2010
(r209022)
@@ -584,7 +584,7 @@ sta_input(struct ieee80211_node *ni, str
}
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)
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"