1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

Clean up parse_ip(..)

- Clean up trailing whitespace
- Fix variable alignment

MFC after:	1 week
This commit is contained in:
Enji Cooper 2016-12-18 05:36:04 +00:00
parent 7c25494706
commit f16a380f79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310203

View File

@ -603,9 +603,9 @@ parse_oid_string(struct snmp_toolinfo *snmptoolctx,
static int32_t
parse_ip(struct snmp_value * value, char * val)
{
uint32_t v;
int32_t i;
char *endptr, *str;
int32_t i;
uint32_t v;
str = val;
for (i = 0; i < 4; i++) {
@ -617,8 +617,8 @@ parse_ip(struct snmp_value * value, char * val)
str = endptr + 1;
value->v.ipaddress[i] = (uint8_t) v;
}
value->syntax = SNMP_SYNTAX_IPADDRESS;
return (0);
}