Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110031
b: refs/heads/master
c: 8ca31ce
h: refs/heads/master
i:
  110029: abe9f4d
  110027: 2fcdb06
  110023: 1794f8a
  110015: 71b4f73
v: v3
  • Loading branch information
Yasuyuki Kozakai authored and David S. Miller committed Sep 24, 2008
1 parent 803300d commit d98db41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5fbcd260c2c52f78cd699f65e9c7af2e60b5380c
refs/heads/master: 8ca31ce52a5cfd03b960fd81a49197ae85d25347
8 changes: 6 additions & 2 deletions trunk/net/ipv6/netfilter/ip6t_hbh.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ hbh_mt6(const struct sk_buff *skb, const struct net_device *in,
hdrlen -= 2;
if (!(optinfo->flags & IP6T_OPTS_OPTS)) {
return ret;
} else if (optinfo->flags & IP6T_OPTS_NSTRICT) {
pr_debug("Not strict - not implemented");
} else {
pr_debug("Strict ");
pr_debug("#%d ", optinfo->optsnr);
Expand Down Expand Up @@ -177,6 +175,12 @@ hbh_mt6_check(const char *tablename, const void *entry,
pr_debug("ip6t_opts: unknown flags %X\n", optsinfo->invflags);
return false;
}

if (optsinfo->flags & IP6T_OPTS_NSTRICT) {
pr_debug("ip6t_opts: Not strict - not implemented");
return false;
}

return true;
}

Expand Down

0 comments on commit d98db41

Please sign in to comment.