1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Fix build w/o 'options IEEE80211_SUPPORT_MESH'.

This commit is contained in:
Gleb Smirnoff 2012-03-04 09:45:43 +00:00
parent dd104b3305
commit dbab732d75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232484

View File

@ -760,6 +760,7 @@ ieee80211_parse_action(struct ieee80211_node *ni, struct mbuf *m)
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_node *ni, struct mbuf *m)
return EINVAL;
}
break;
#endif
}
return 0;
}