diff options
author | 2008-07-21 15:56:55 +0000 | |
---|---|---|
committer | 2008-07-21 15:56:55 +0000 | |
commit | 8a33eb797c55c39ec9ff87a88631c19e0913a06a (patch) | |
tree | 3fe41e5785d356bcfc2f4832bdab16dd00e4ad7d | |
parent | Add curproc to ioctl call. (diff) | |
download | wireguard-openbsd-8a33eb797c55c39ec9ff87a88631c19e0913a06a.tar.xz wireguard-openbsd-8a33eb797c55c39ec9ff87a88631c19e0913a06a.zip |
fix typo that broke rdr rules (without pass) with non-TCP/UDP/ICMP protocols
ok mcbride@ henning@
-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 6afcea34723..039b4ab7a16 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.610 2008/07/14 13:29:45 henning Exp $ */ +/* $OpenBSD: pf.c,v 1.611 2008/07/21 15:56:55 david Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -3160,7 +3160,7 @@ pf_test_rule(struct pf_rule **rm, struct pf_state **sm, int direction, &nk->addr[pd->sidx], AF_INET)) pf_change_a(&saddr->v4.s_addr, pd->ip_sum, - nk->addr[pd->didx].v4.s_addr, 0); + nk->addr[pd->sidx].v4.s_addr, 0); if (PF_ANEQ(daddr, &nk->addr[pd->didx], AF_INET)) |