From 8a33eb797c55c39ec9ff87a88631c19e0913a06a Mon Sep 17 00:00:00 2001 From: david Date: Mon, 21 Jul 2008 15:56:55 +0000 Subject: [PATCH] fix typo that broke rdr rules (without pass) with non-TCP/UDP/ICMP protocols ok mcbride@ henning@ --- sys/net/pf.c | 4 ++-- 1 file 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)) -- 2.20.1