Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Dec 2016 08:16:44 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r310763 - head/contrib/bsnmp/snmpd
Message-ID:  <201612290816.uBT8GiXB084153@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Thu Dec 29 08:16:43 2016
New Revision: 310763
URL: https://svnweb.freebsd.org/changeset/base/310763

Log:
  Use uint32_t instead of u_int32_t for or_last_change and services in "struct systemg"
  
  This is being done to match "struct systemg" in snmpmod(3)
  
  No functional change
  
  MFC after:	3 days

Modified:
  head/contrib/bsnmp/snmpd/snmpmod.h

Modified: head/contrib/bsnmp/snmpd/snmpmod.h
==============================================================================
--- head/contrib/bsnmp/snmpd/snmpmod.h	Thu Dec 29 08:10:51 2016	(r310762)
+++ head/contrib/bsnmp/snmpd/snmpmod.h	Thu Dec 29 08:16:43 2016	(r310763)
@@ -317,8 +317,8 @@ struct systemg {
 	u_char		*contact;
 	u_char		*name;
 	u_char		*location;
-	u_int32_t	services;
-	u_int32_t	or_last_change;
+	uint32_t	services;
+	uint32_t	or_last_change;
 };
 extern struct systemg systemg;
 



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