diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-08-30 11:23:01 -0400 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-08-30 11:27:11 -0400 |
| commit | 60466a63f2a3c1da8c99721ec018c8b73610b548 (patch) | |
| tree | 62153f2941a8ba88c0ffd2070ad6749d7730a34d /zebra/kernel_socket.c | |
| parent | cc1edd39297bd763e0e1a942e15881a3ac99453a (diff) | |
*: fix style
Fixes style nits introduced by recent pull requests.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/kernel_socket.c')
| -rw-r--r-- | zebra/kernel_socket.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index 554ca4f77b..df8cdb3ab3 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c @@ -1041,8 +1041,8 @@ void rtm_read(struct rt_msghdr *rtm) */ if (rtm->rtm_type == RTM_CHANGE) rib_delete(AFI_IP, SAFI_UNICAST, VRF_DEFAULT, - ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, - NULL, NULL, 0, 0); + ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL, + NULL, 0, 0); if (!nh.type) { nh.type = NEXTHOP_TYPE_IPV4; @@ -1087,8 +1087,8 @@ void rtm_read(struct rt_msghdr *rtm) */ if (rtm->rtm_type == RTM_CHANGE) rib_delete(AFI_IP6, SAFI_UNICAST, VRF_DEFAULT, - ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, - NULL, NULL, 0, 0); + ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL, + NULL, 0, 0); if (!nh.type) { nh.type = ifindex ? NEXTHOP_TYPE_IPV6_IFINDEX |
