svn commit: r310993 - stable/10/contrib/bsnmp/snmpd

Ngie Cooper ngie at FreeBSD.org
Sun Jan 1 00:43:21 UTC 2017


Author: ngie
Date: Sun Jan  1 00:43:20 2017
New Revision: 310993
URL: https://svnweb.freebsd.org/changeset/base/310993

Log:
  MFstable/11 r310992:
  
  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/10/contrib/bsnmp/snmpd/snmpmod.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/contrib/bsnmp/snmpd/snmpmod.h
==============================================================================
--- stable/10/contrib/bsnmp/snmpd/snmpmod.h	Sun Jan  1 00:41:57 2017	(r310992)
+++ stable/10/contrib/bsnmp/snmpd/snmpmod.h	Sun Jan  1 00:43:20 2017	(r310993)
@@ -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-all mailing list