summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-08-15 20:35:44 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 16:01:20 -0700
commit63a1222b1fd79c52491c14534b086bffbfaed8bf (patch)
tree36ec7df2a9ed5b3750223c8ebad4aa7b93ce4d94
parent216efaaaa006d2f3ecbb5bbc2b6673423813254e (diff)
downloadlinux-63a1222b1fd79c52491c14534b086bffbfaed8bf.tar.gz
[DECNET]: Fix build after netlink changes.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/decnet/netfilter/dn_rtmsg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/decnet/netfilter/dn_rtmsg.c b/net/decnet/netfilter/dn_rtmsg.c
index afb33a25ea55..1ab94c6e22ed 100644
--- a/net/decnet/netfilter/dn_rtmsg.c
+++ b/net/decnet/netfilter/dn_rtmsg.c
@@ -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>
@@ -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;