svn commit: r310992 - stable/11/contrib/bsnmp/snmpd

Ngie Cooper ngie at FreeBSD.org
Sun Jan 1 00:41:57 UTC 2017


Author: ngie
Date: Sun Jan  1 00:41:57 2017
New Revision: 310992
URL: https://svnweb.freebsd.org/changeset/base/310992

Log:
  MFC r310763:
  
  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

Modified:
  stable/11/contrib/bsnmp/snmpd/snmpmod.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/contrib/bsnmp/snmpd/snmpmod.h
==============================================================================
--- stable/11/contrib/bsnmp/snmpd/snmpmod.h	Sun Jan  1 00:40:34 2017	(r310991)
+++ stable/11/contrib/bsnmp/snmpd/snmpmod.h	Sun Jan  1 00:41:57 2017	(r310992)
@@ -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;
 


More information about the svn-src-stable mailing list