svn commit: r196316 - head/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Mon Aug 17 12:57:57 UTC 2009


Author: rpaulo
Date: Mon Aug 17 12:57:57 2009
New Revision: 196316
URL: http://svn.freebsd.org/changeset/base/196316

Log:
  Fix a typo in ifdef mesh support. This would make mesh unworkable if
  TDMA support was compiled out.
  
  Approved by:	re (kib)

Modified:
  head/sys/net80211/ieee80211_input.c

Modified: head/sys/net80211/ieee80211_input.c
==============================================================================
--- head/sys/net80211/ieee80211_input.c	Mon Aug 17 12:37:06 2009	(r196315)
+++ head/sys/net80211/ieee80211_input.c	Mon Aug 17 12:57:57 2009	(r196316)
@@ -524,7 +524,7 @@ ieee80211_parse_beacon(struct ieee80211_
 		case IEEE80211_ELEMID_HTINFO:
 			scan->htinfo = frm;
 			break;
-#ifdef IEEE80211_SUPPORT_TDMA
+#ifdef IEEE80211_SUPPORT_MESH
 		case IEEE80211_ELEMID_MESHID:
 			scan->meshid = frm;
 			break;


More information about the svn-src-head mailing list