summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-05-28 11:16:39 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-05-28 11:16:39 +0200
commit9b061f7ea5933f70c200bb3b3a7be5a2e472e805 (patch)
tree9ddf781795092feb8f8dfbbbc6d153e9ba2171cd /sysdep
parent691057f03310e712428e19214ae48462d0f258e1 (diff)
downloadbird-9b061f7ea5933f70c200bb3b3a7be5a2e472e805.tar
bird-9b061f7ea5933f70c200bb3b3a7be5a2e472e805.zip
Minor fixes.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/bsd/krt-sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/bsd/krt-sock.c b/sysdep/bsd/krt-sock.c
index 12ebe6d..4c8676e 100644
--- a/sysdep/bsd/krt-sock.c
+++ b/sysdep/bsd/krt-sock.c
@@ -549,11 +549,11 @@ krt_read_addr(struct ks_msg *msg)
{
ifa.prefix = ipa_and(ifa.ip, ipa_mkmask(masklen));
- if (i->ifa_prefixlen == BITS_PER_IP_ADDRESS - 1)
+ if (masklen == (BITS_PER_IP_ADDRESS - 1))
ifa.opposite = ipa_opposite_m1(ifa.ip);
#ifndef IPV6
- if (i->ifa_prefixlen == BITS_PER_IP_ADDRESS - 2)
+ if (masklen == (BITS_PER_IP_ADDRESS - 2))
ifa.opposite = ipa_opposite_m2(ifa.ip);
#endif
}