[PATCH 12/12] rtnl: Fix l_rtnl_route_get_protocol
Andrew Zaborowski <andrew.zaborowski at intel.com>
| Newsgroups | dev.linux.lists.ell |
|---|---|
| Message-ID | <[email protected]> |
--- ell/rtnl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ell/rtnl.c b/ell/rtnl.c index 126fb9d..5464872 100644 --- a/ell/rtnl.c +++ b/ell/rtnl.c @@ -648,7 +648,7 @@ LIB_EXPORT uint8_t l_rtnl_route_get_protocol(const struct l_rtnl_route *rt) if (unlikely(!rt)) return RTPROT_UNSPEC; - return rt->scope; + return rt->protocol; } LIB_EXPORT bool l_rtnl_route_set_protocol(struct l_rtnl_route *rt, -- 2.32.0