This fixes a copy & paste error detected by Coverity.
Fixes: b56061058113 ("batctl: add netlink dump function for multicast flags table") Reported-by: scan-admin@coverity.com Signed-off-by: Linus Lüssing linus.luessing@c0d3.blue --- netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/netlink.c b/netlink.c index ab7be1e..f0fd1d9 100644 --- a/netlink.c +++ b/netlink.c @@ -252,7 +252,7 @@ static int info_callback(struct nl_msg *msg, void *arg) if (attrs[BATADV_ATTR_MCAST_FLAGS_PRIV]) mcast_flags_priv = nla_get_u32(attrs[BATADV_ATTR_MCAST_FLAGS_PRIV]); else - mcast_flags = -EOPNOTSUPP; + mcast_flags_priv = -EOPNOTSUPP;
switch (opts->nl_cmd) { case BATADV_CMD_GET_TRANSTABLE_LOCAL: