diff options
author | Luiz Otavio O Souza <luiz@netgate.com> | 2016-11-01 23:58:09 -0500 |
---|---|---|
committer | Luiz Souza <luiz@netgate.com> | 2017-07-17 21:42:57 -0500 |
commit | e38be777ef9e0ed4c4623460d5312439bb73b7b3 (patch) | |
tree | 60de06d1456a70ecdf48527a16cea056a27f3fb9 | |
parent | bfcdf7a986843df19e581c104b4dedcc821f8345 (diff) | |
download | FreeBSD-src-e38be777ef9e0ed4c4623460d5312439bb73b7b3.zip FreeBSD-src-e38be777ef9e0ed4c4623460d5312439bb73b7b3.tar.gz |
Fix the build, remove the extra brackets.
(cherry picked from commit 201ab78f020c884be5c1e5b69e5f40e4a57eef89)
-rw-r--r-- | sys/netpfil/pf/pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/pf/pf.c b/sys/netpfil/pf/pf.c index ed4b8a2..ba241f9 100644 --- a/sys/netpfil/pf/pf.c +++ b/sys/netpfil/pf/pf.c @@ -7084,7 +7084,7 @@ done: if (ip_dn_io_ptr(m0, ((dir == PF_IN) ? DIR_IN : DIR_OUT) | PROTO_IPV6, - &dnflow) != 0) { + &dnflow) != 0) action = PF_DROP; if (*m0 == NULL) { if (s) |