From: Roman Mashak Date: Sat, 3 Mar 2018 01:52:01 +0000 (-0500) Subject: net sched actions: corrected extack message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d143b9e3055358e160d8d5975d889ce5c149625a;p=linux.git net sched actions: corrected extack message Signed-off-by: Roman Mashak Signed-off-by: David S. Miller --- diff --git a/net/sched/act_api.c b/net/sched/act_api.c index 1f65d6ada9ff0..a54fa7b8c2170 100644 --- a/net/sched/act_api.c +++ b/net/sched/act_api.c @@ -1083,7 +1083,7 @@ tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions, if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags, RTM_NEWACTION, 0, 0) <= 0) { - NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while deleting TC action"); + NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action"); kfree_skb(skb); return -EINVAL; }