diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2024-05-28 23:01:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 23:01:20 +0200 |
commit | f8abf9644063aa8817dc434bc70a6a505672a6eb (patch) | |
tree | ed222e25fa38a5aba3668a9d6636a3fd486fde91 /zebra | |
parent | Merge pull request #16055 from acooks-at-bda/cleanup-some-ospf6-lsa-macros (diff) | |
parent | zebra: fix fpm_listener compilation (diff) | |
download | frr-f8abf9644063aa8817dc434bc70a6a505672a6eb.tar.xz frr-f8abf9644063aa8817dc434bc70a6a505672a6eb.zip |
Merge pull request #15082 from louis-6wind/fix-iff-lower-up
lib: take into account the Linux IFF_LOWER_UP flag
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/fpm_listener.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/fpm_listener.c b/zebra/fpm_listener.c index 63977633a..7d84c706d 100644 --- a/zebra/fpm_listener.c +++ b/zebra/fpm_listener.c @@ -417,7 +417,7 @@ static int netlink_msg_ctx_add_nh(struct netlink_msg_ctx *ctx, int if_index, static int parse_multipath_attr(struct netlink_msg_ctx *ctx, struct rtattr *mpath_rtattr) { - size_t len; + int len; struct rtnexthop *rtnh; struct rtattr *rtattrs[RTA_MAX + 1]; struct rtattr *tb[RTA_MAX + 1]; |