mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-17 15:27:36 +00:00
Clean up parse_ip(..)
- Clean up trailing whitespace - Fix variable alignment MFC after: 1 week
This commit is contained in:
parent
7c25494706
commit
f16a380f79
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310203
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user