summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2017-01-01 00:41:57 +0000
committerngie <ngie@FreeBSD.org>2017-01-01 00:41:57 +0000
commitfe2e31c901ae91b580c4c7a7d825dd5dbf60e39a (patch)
treebb71ace3677b6f3e99ca476e5bc53da7871e6b7d
parent70306d785bb89374efa5244dbf39c78765e52e11 (diff)
downloadFreeBSD-src-fe2e31c901ae91b580c4c7a7d825dd5dbf60e39a.zip
FreeBSD-src-fe2e31c901ae91b580c4c7a7d825dd5dbf60e39a.tar.gz
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
-rw-r--r--contrib/bsnmp/snmpd/snmpmod.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/bsnmp/snmpd/snmpmod.h b/contrib/bsnmp/snmpd/snmpmod.h
index bc9e412..c9e609f 100644
--- a/contrib/bsnmp/snmpd/snmpmod.h
+++ b/contrib/bsnmp/snmpd/snmpmod.h
@@ -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;
OpenPOWER on IntegriCloud