diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-10-04 16:00:27 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-10-04 16:00:27 -0400 |
| commit | 0cf0069d31861d575cfa3f84877ce512214b6449 (patch) | |
| tree | 39e002c52767b0ca5d6a8eb09340797f36fcaf06 /zebra/if_netlink.c | |
| parent | a3e036f36a55701325435035b836382fa0061c2b (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.c | 2 |
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; |
