diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-10-18 14:21:26 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-10-22 15:32:50 +0300 | 
| commit | af3b34f6903d395d30795ab2b6feee6530d2f783 (patch) | |
| tree | 7963bd0c2b19e4ab43b918be4d8172e1f96e09ac /lib/nexthop_group.c | |
| parent | 84de5a245a3eb17619588a535b9f408ce802a8c9 (diff) | |
lib: Convert inet_ntoa to %pI4
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'lib/nexthop_group.c')
| -rw-r--r-- | lib/nexthop_group.c | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/nexthop_group.c b/lib/nexthop_group.c index 4afb1d642a..dee98ad8d7 100644 --- a/lib/nexthop_group.c +++ b/lib/nexthop_group.c @@ -975,7 +975,6 @@ void nexthop_group_write_nexthop_simple(struct vty *vty,  					const struct nexthop *nh,  					char *altifname)  { -	char buf[100];  	char *ifname;  	vty_out(vty, "nexthop "); @@ -990,19 +989,16 @@ void nexthop_group_write_nexthop_simple(struct vty *vty,  		vty_out(vty, "%s", ifname);  		break;  	case NEXTHOP_TYPE_IPV4: -		vty_out(vty, "%s", inet_ntoa(nh->gate.ipv4)); +		vty_out(vty, "%pI4", &nh->gate.ipv4);  		break;  	case NEXTHOP_TYPE_IPV4_IFINDEX: -		vty_out(vty, "%s %s", inet_ntoa(nh->gate.ipv4), ifname); +		vty_out(vty, "%pI4 %s", &nh->gate.ipv4, ifname);  		break;  	case NEXTHOP_TYPE_IPV6: -		vty_out(vty, "%s", -			inet_ntop(AF_INET6, &nh->gate.ipv6, buf, sizeof(buf))); +		vty_out(vty, "%pI6", &nh->gate.ipv6);  		break;  	case NEXTHOP_TYPE_IPV6_IFINDEX: -		vty_out(vty, "%s %s", -			inet_ntop(AF_INET6, &nh->gate.ipv6, buf, sizeof(buf)), -			ifname); +		vty_out(vty, "%pI6 %s", &nh->gate.ipv6, ifname);  		break;  	case NEXTHOP_TYPE_BLACKHOLE:  		break; @@ -1056,10 +1052,14 @@ void nexthop_group_json_nexthop(json_object *j, const struct nexthop *nh)  				       ifindex2ifname(nh->ifindex, nh->vrf_id));  		break;  	case NEXTHOP_TYPE_IPV4: -		json_object_string_add(j, "nexthop", inet_ntoa(nh->gate.ipv4)); +		json_object_string_add( +			j, "nexthop", +			inet_ntop(AF_INET, &nh->gate.ipv4, buf, sizeof(buf)));  		break;  	case NEXTHOP_TYPE_IPV4_IFINDEX: -		json_object_string_add(j, "nexthop", inet_ntoa(nh->gate.ipv4)); +		json_object_string_add( +			j, "nexthop", +			inet_ntop(AF_INET, &nh->gate.ipv4, buf, sizeof(buf)));  		json_object_string_add(j, "vrfId",  				       ifindex2ifname(nh->ifindex, nh->vrf_id));  		break;  | 
