aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2011-12-17 19:53:08 +0000
committerDimitry Andric <dim@FreeBSD.org>2011-12-17 19:53:08 +0000
commit1605515d77d741ad7df0e19380f30041ea2664ae (patch)
tree59601fa7c67fada0dfbb9de3b3c8cb264869473b /usr.sbin
parent14fa6dc4032f56ea76e1e657c293b67cfb656ec7 (diff)
downloadsrc-1605515d77d741ad7df0e19380f30041ea2664ae.tar.gz
src-1605515d77d741ad7df0e19380f30041ea2664ae.zip
In usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h, use the correct
enumeration types for the mesh_peering and mesh_forwarding members of struct wlan_iface, to fix enum conversion warnings. MFC after: 1 week
Notes
Notes: svn path=/head/; revision=228657
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h b/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h
index 16632d3b9c4c..9e184f5bdd5f 100644
--- a/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h
+++ b/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h
@@ -175,8 +175,8 @@ struct wlan_iface {
struct wlan_maclist mac_maclist;
uint32_t mesh_ttl;
- enum TruthValue mesh_peering;
- enum TruthValue mesh_forwarding;
+ enum wlanMeshPeeringEnabled mesh_peering;
+ enum wlanMeshForwardingEnabled mesh_forwarding;
enum wlanMeshMetric mesh_metric;
enum wlanMeshPath mesh_path;
enum wlanHWMPRootMode hwmp_root_mode;