Parcourir la source

nl80211: Use nl_atype() from libnl

libnl provides nla_type() which can be used to derive nla_type from
struct nlattr.
Raghunathan Kailasanathan il y a 14 ans
Parent
commit
58708b3bd1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/drivers/driver_nl80211.c

+ 1 - 1
src/drivers/driver_nl80211.c

@@ -1499,7 +1499,7 @@ static int wiphy_info_handler(struct nl_msg *msg, void *arg)
 		int i;
 		nla_for_each_nested(nl_mode,
 				    tb[NL80211_ATTR_SUPPORTED_IFTYPES], i) {
-			switch (nl_mode->nla_type) {
+			switch (nla_type(nl_mode)) {
 			case NL80211_IFTYPE_AP:
 				info->ap_supported = 1;
 				break;