svn commit: r310763 - head/contrib/bsnmp/snmpd
Ngie Cooper
ngie at FreeBSD.org
Thu Dec 29 08:16:45 UTC 2016
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;
More information about the svn-src-all
mailing list