summaryrefslogtreecommitdiff
path: root/zebra/if_netlink.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-10-04 16:00:27 -0400
committerDonald Sharp <sharpd@nvidia.com>2021-10-04 16:00:27 -0400
commit0cf0069d31861d575cfa3f84877ce512214b6449 (patch)
tree39e002c52767b0ca5d6a8eb09340797f36fcaf06 /zebra/if_netlink.c
parenta3e036f36a55701325435035b836382fa0061c2b (diff)
zebra: On interface startup note that we are in startup
The boolean to notice that we are in startup situations was not being properly set in one spot. Fix. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/if_netlink.c')
-rw-r--r--zebra/if_netlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/if_netlink.c b/zebra/if_netlink.c
index 28a64407e5..ce0779e91c 100644
--- a/zebra/if_netlink.c
+++ b/zebra/if_netlink.c
@@ -1099,7 +1099,7 @@ int interface_lookup_netlink(struct zebra_ns *zns)
if (ret < 0)
return ret;
ret = netlink_parse_info(netlink_interface, netlink_cmd, &dp_info, 0,
- 0);
+ 1);
if (ret < 0)
return ret;