summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2015-04-14 16:18:01 +0200
committerSteven Barth <steven@midlink.org>2015-04-14 16:21:39 +0200
commit33858d341fa7eff6e7245a2486fc42aee64c81ff (patch)
tree51c5823014226b0afa18764db6ce424c2576de94
parenta06dd6481cd046e4856774ac32cdc11f4bc721e2 (diff)
downloadodhcpd-33858d341fa7eff6e7245a2486fc42aee64c81ff.tar.gz
Fix logic inversion
Signed-off-by: Steven Barth <steven@midlink.org>
-rw-r--r--src/dhcpv6-ia.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhcpv6-ia.c b/src/dhcpv6-ia.c
index 1476e02..7e8e535 100644
--- a/src/dhcpv6-ia.c
+++ b/src/dhcpv6-ia.c
@@ -596,7 +596,7 @@ static void update(struct interface *iface)
}
struct dhcpv6_assignment *border = list_last_entry(&iface->ia_assignments, struct dhcpv6_assignment, head);
- if (minprefix <= 32 || minprefix > 64)
+ if (minprefix > 32 && minprefix <= 64)
border->assigned = 1U << (64 - minprefix);
else
border->assigned = 0;