diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-06-01 16:22:06 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-06-01 16:22:06 +0000 |
commit | 51a166362649e2fe7de4dd395ebd8018574499c0 (patch) | |
tree | b596ebb8beefa61975729bb0996eb8005877b0bb /sys/netinet6/raw_ip6.c | |
parent | 6c767d473d124564aa10591e9b7250fa0f9b7ee7 (diff) |
Pass the routing domain to IPv6 pr_ctlinput() like in IPv4.
OK claudio@
Diffstat (limited to 'sys/netinet6/raw_ip6.c')
-rw-r--r-- | sys/netinet6/raw_ip6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index 6866ebea562..063267915fb 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ip6.c,v 1.56 2013/05/31 15:04:25 bluhm Exp $ */ +/* $OpenBSD: raw_ip6.c,v 1.57 2013/06/01 16:22:05 bluhm Exp $ */ /* $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $ */ /* @@ -236,7 +236,7 @@ rip6_input(struct mbuf **mp, int *offp, int proto) } void -rip6_ctlinput(int cmd, struct sockaddr *sa, void *d) +rip6_ctlinput(int cmd, struct sockaddr *sa, u_int rdomain, void *d) { struct ip6_hdr *ip6; struct ip6ctlparam *ip6cp = NULL; |