svn commit: r209022 - head/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Fri Jun 11 07:53:52 UTC 2010


On 11 Jun 2010, at 02:32, Tai-hwa Liang wrote:

> 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)

Oops, thanks!

Regards,
--
Rui Paulo




More information about the svn-src-all mailing list