Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jan 2012 21:43:14 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r229213 - stable/9/usr.sbin/bsnmpd/modules/snmp_wlan
Message-ID:  <201201012143.q01LhEcE032230@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sun Jan  1 21:43:14 2012
New Revision: 229213
URL: http://svn.freebsd.org/changeset/base/229213

Log:
  MFC r228657:
  
  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.

Modified:
  stable/9/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h
Directory Properties:
  stable/9/usr.sbin/bsnmpd/modules/snmp_wlan/   (props changed)

Modified: stable/9/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h
==============================================================================
--- stable/9/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h	Sun Jan  1 21:38:58 2012	(r229212)
+++ stable/9/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h	Sun Jan  1 21:43:14 2012	(r229213)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201012143.q01LhEcE032230>