diff options
author | 2009-10-29 10:28:27 +0000 | |
---|---|---|
committer | 2009-10-29 10:28:27 +0000 | |
commit | a3cf6b8e67aee74107785c96f192f7f908eeac2f (patch) | |
tree | dc144a5ffa48de4c54258aca77f1909bd38c1c0b | |
parent | Missing ;. From eric@ ages ago. (diff) | |
download | wireguard-openbsd-a3cf6b8e67aee74107785c96f192f7f908eeac2f.tar.xz wireguard-openbsd-a3cf6b8e67aee74107785c96f192f7f908eeac2f.zip |
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@
-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 */ |