diff options
Diffstat (limited to 'extensions/libxt_cgroup.c')
-rw-r--r-- | extensions/libxt_cgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libxt_cgroup.c b/extensions/libxt_cgroup.c index 11918151..fcd77c3f 100644 --- a/extensions/libxt_cgroup.c +++ b/extensions/libxt_cgroup.c @@ -126,7 +126,7 @@ static int cgroup_xlate_v0(const void *ip, const struct xt_entry_match *match, { const struct xt_cgroup_info_v0 *info = (void *)match->data; - xt_xlate_add(xl, "meta cgroup %s%u ", info->invert ? "!= " : "", + xt_xlate_add(xl, "meta cgroup %s%u", info->invert ? "!= " : "", info->id); return 1; } @@ -140,7 +140,7 @@ static int cgroup_xlate_v1(const void *ip, const struct xt_entry_match *match, return 0; if (info->has_classid) - xt_xlate_add(xl, "meta cgroup %s%u ", + xt_xlate_add(xl, "meta cgroup %s%u", info->invert_classid ? "!= " : "", info->classid); |