diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-10-29 10:28:28 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-10-29 10:28:28 +0000 |
commit | adfb6917aa1238f475fe02423efbf245c66b7af0 (patch) | |
tree | 49310c2b616437951ae5776e3e74eebd701c245b /sys | |
parent | 027e262aad2542e5bfbc8ebbd57d221af6e9c3a4 (diff) |
I missed updating a line for the AF_INET6 route case when
splitting things out into a seperate pool.
Problem noticed and fix tested by sthen@
ok claudio@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/pf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index fbb28db0073..7d56711c2ff 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.665 2009/10/28 20:11:01 jsg Exp $ */ +/* $OpenBSD: pf.c,v 1.666 2009/10/29 10:28:27 jsg Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -2610,7 +2610,7 @@ pf_set_rt_ifp(struct pf_state *s, struct pf_addr *saddr) #ifdef INET6 case AF_INET6: pf_map_addr(AF_INET6, r, saddr, &s->rt_addr, NULL, &sn, - &r->rdr); + &r->route); s->rt_kif = r->route.cur->kif; break; #endif /* INET6 */ |