diff options
author | Jiri Pirko <jpirko@redhat.com> | 2009-10-08 01:21:46 -0700 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-11-06 11:50:28 +0100 |
commit | 55443288c3721826ffe53521bb194cf5916ef9fb (patch) | |
tree | 12b8e734dc0a09124df27613e119a5472305a91d | |
parent | e8b444f5280c41a0898de7c90a3a0d00a9103eda (diff) | |
download | lwn-55443288c3721826ffe53521bb194cf5916ef9fb.tar.gz lwn-55443288c3721826ffe53521bb194cf5916ef9fb.zip |
netlink: fix typo in initialization
Commit 9ef1d4c7c7aca1cd436612b6ca785b726ffb8ed8 ("[NETLINK]: Missing
initializations in dumped data") introduced a typo in
initialization. This patch fixes this.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sched/cls_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index 09cdcdfe7e91..b83ac88a1448 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -348,7 +348,7 @@ static int tcf_fill_node(struct sk_buff *skb, struct tcf_proto *tp, tcm = NLMSG_DATA(nlh); tcm->tcm_family = AF_UNSPEC; tcm->tcm__pad1 = 0; - tcm->tcm__pad1 = 0; + tcm->tcm__pad2 = 0; tcm->tcm_ifindex = qdisc_dev(tp->q)->ifindex; tcm->tcm_parent = tp->classid; tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol); |