Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jan 2017 00:41:57 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r310992 - stable/11/contrib/bsnmp/snmpd
Message-ID:  <201701010041.v010fvBs085699@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 



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