diff options
author | ngie <ngie@FreeBSD.org> | 2017-01-01 00:43:20 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-01-01 00:43:20 +0000 |
commit | f45ebcc8a9b65acac9ed1b443fbd62762b4d7584 (patch) | |
tree | f8d43f53bd9d7ae4dc2356bd48e72a61ca7b6240 /contrib/bsnmp | |
parent | f7cdb2f773b40fa82dc1d3675586b81c158b6c0e (diff) | |
download | FreeBSD-src-f45ebcc8a9b65acac9ed1b443fbd62762b4d7584.zip FreeBSD-src-f45ebcc8a9b65acac9ed1b443fbd62762b4d7584.tar.gz |
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
Diffstat (limited to 'contrib/bsnmp')
-rw-r--r-- | contrib/bsnmp/snmpd/snmpmod.h | 4 |
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; |