diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-09-01 15:08:40 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-09-01 15:08:40 +0000 |
commit | 60ed2c841bf7d745690289837c45a85fdac0ce62 (patch) | |
tree | 0070127d5a3b79fa0cab65bd5dacb126374338fc /sys | |
parent | 81b83e717abc784f50fb7d7578e92f4d5769c993 (diff) |
KNF
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 a150df458f9..c2c2c724320 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.388 2003/09/01 10:41:38 cedric Exp $ */ +/* $OpenBSD: pf.c,v 1.389 2003/09/01 15:08:39 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1584,7 +1584,7 @@ pf_map_addr(u_int8_t af, struct pf_pool *rpool, struct pf_addr *saddr, rpool->cur->addr.p.dyn->undefined) return (1); if (rpool->cur->addr.type == PF_ADDR_TABLE) { - if ((rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_ROUNDROBIN) + if ((rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_ROUNDROBIN) return (1); /* unsupported */ } else { raddr = &rpool->cur->addr.v.a.addr; |