Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195062
b: refs/heads/master
c: c29c949
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt committed May 2, 2010
1 parent ee77ed9 commit 7ff0dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 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: b5cad0dfd3c80501330215b9a9ae31bcffbd7306
refs/heads/master: c29c949288d343be0d5c4f3091bc87ac047e1a09
4 changes: 2 additions & 2 deletions trunk/net/netfilter/xt_multiport.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static int multiport_mt_check(const struct xt_mtchk_param *par)
const struct xt_multiport_v1 *multiinfo = par->matchinfo;

return check(ip->proto, ip->invflags, multiinfo->flags,
multiinfo->count);
multiinfo->count) ? 0 : -EINVAL;
}

static int multiport_mt6_check(const struct xt_mtchk_param *par)
Expand All @@ -126,7 +126,7 @@ static int multiport_mt6_check(const struct xt_mtchk_param *par)
const struct xt_multiport_v1 *multiinfo = par->matchinfo;

return check(ip->proto, ip->invflags, multiinfo->flags,
multiinfo->count);
multiinfo->count) ? 0 : -EINVAL;
}

static struct xt_match multiport_mt_reg[] __read_mostly = {
Expand Down

0 comments on commit 7ff0dcf

Please sign in to comment.