Repository : ssh://git@open-mesh.org/batctl
On branch : master
commit 15f6d908fe3d152fc7a4c682231d13fbf1b8751e Author: Linus Lüssing linus.luessing@c0d3.blue Date: Tue Mar 20 02:19:24 2018 +0100
batctl: netlink: fix resetting mcast_flags_priv to unsupported state
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 Signed-off-by: Sven Eckelmann sven@narfation.org
15f6d908fe3d152fc7a4c682231d13fbf1b8751e 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: