svn commit: r232484 - head/sys/net80211

Gleb Smirnoff glebius at FreeBSD.org
Sun Mar 4 09:45:43 UTC 2012


Author: glebius
Date: Sun Mar  4 09:45:43 2012
New Revision: 232484
URL: http://svn.freebsd.org/changeset/base/232484

Log:
  Fix build w/o 'options IEEE80211_SUPPORT_MESH'.

Modified:
  head/sys/net80211/ieee80211_input.c

Modified: head/sys/net80211/ieee80211_input.c
==============================================================================
--- head/sys/net80211/ieee80211_input.c	Sun Mar  4 09:38:20 2012	(r232483)
+++ head/sys/net80211/ieee80211_input.c	Sun Mar  4 09:45:43 2012	(r232484)
@@ -760,6 +760,7 @@ ieee80211_parse_action(struct ieee80211_
 			break;
 		}
 		break;
+#ifdef IEEE80211_SUPPORT_MESH
 	case IEEE80211_ACTION_CAT_MESH:
 		switch (ia->ia_action) {
 		case IEEE80211_ACTION_MESH_LMETRIC:
@@ -791,6 +792,7 @@ ieee80211_parse_action(struct ieee80211_
 			return EINVAL;
 		}
 		break;
+#endif
 	}
 	return 0;
 }


More information about the svn-src-head mailing list