-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 06/10/10 19:11, FreeBSD Tinderbox wrote:

> cc -c -O2 -pipe -fno-strict-aliasing  -std=c99  -Wall -Wredundant-decls 
> -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith 
> -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc 
>  -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src 
> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common 
> -finline-limit=15000 --param inline-unit-growth=100 --param 
> large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 
> -mfixed-range=f32-f127 -fpic -ffreestanding -Werror  
> /src/sys/net80211/ieee80211_sta.c
> /src/sys/net80211/ieee80211_sta.c: In function 'sta_input':
> /src/sys/net80211/ieee80211_sta.c:587: error: expected ')' before '!' token
> *** Error code 1

I *think* this is supposed to be ..

  if (HAS_SEQ(type) && !IEEE80211_IS_MULTICAST(wh->i_addr1)) {

        imb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (FreeBSD)

iEYEARECAAYFAkwRdRsACgkQQv9rrgRC1JLQ9ACfVPINlwHR8g0hXt0wenp5esfj
FooAnidIAWqJr9fJ3wQ8nhtEZtj9d0VG
=errN
-----END PGP SIGNATURE-----
*** /usr/src/sys/net80211/ieee80211_sta.c~	Thu Jun 10 17:53:24 2010
--- /usr/src/sys/net80211/ieee80211_sta.c	Thu Jun 10 19:15:42 2010
***************
*** 584,590 ****
  		}
  		IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
  		ni->ni_noise = nf;
! 		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)
--- 584,590 ----
  		}
  		IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
  		ni->ni_noise = nf;
! 		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)
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to