diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-05-24 18:43:11 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-05-24 18:43:11 +0000 |
commit | 199936efe547e0ac70b0ef88f125df92423c6b0d (patch) | |
tree | bd16e02f9fc940ff3bd0411aeaddda9df41d2e56 /sys/netinet6/ip6_input.c | |
parent | 432bb6531c580f0161b49f0aa8e1ad39fc227e5b (diff) |
fix 2 !foo & bar
"why are you not committing? into the tree, into the tree!"
and ok tedu@
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r-- | sys/netinet6/ip6_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index ab5605ff04b..92c0fe79cc1 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.64 2006/03/05 21:48:57 miod Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.65 2006/05/24 18:43:10 thib Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -1048,7 +1048,7 @@ ip6_savecontrol(in6p, mp, ip6, m) switch (nxt) { case IPPROTO_DSTOPTS: - if (!in6p->in6p_flags & IN6P_DSTOPTS) + if (!(in6p->in6p_flags & IN6P_DSTOPTS)) break; *mp = sbcreatecontrol((caddr_t)ip6e, elen, @@ -1058,7 +1058,7 @@ ip6_savecontrol(in6p, mp, ip6, m) break; case IPPROTO_ROUTING: - if (!in6p->in6p_flags & IN6P_RTHDR) + if (!(in6p->in6p_flags & IN6P_RTHDR)) break; *mp = sbcreatecontrol((caddr_t)ip6e, elen, |