Skip to content

Commit

Permalink
[DECNET]: Fix build after netlink changes.
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Andrew Morton authored and David S. Miller committed Aug 29, 2005
1 parent 216efaa commit 63a1222
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions net/decnet/netfilter/dn_rtmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <linux/netfilter.h>
#include <linux/spinlock.h>
#include <linux/netlink.h>
#include <linux/netfilter_decnet.h>

#include <net/sock.h>
#include <net/flow.h>
Expand Down Expand Up @@ -71,10 +72,10 @@ static void dnrmg_send_peer(struct sk_buff *skb)

switch(flags & DN_RT_CNTL_MSK) {
case DN_RT_PKT_L1RT:
group = DNRMG_L1_NLGRP;
group = DNRNG_NLGRP_L1;
break;
case DN_RT_PKT_L2RT:
group = DNRMG_L2_NLGRP;
group = DNRNG_NLGRP_L2;
break;
default:
return;
Expand Down

0 comments on commit 63a1222

Please sign in to comment.