summaryrefslogtreecommitdiffstats
path: root/userspace/ebtables2/extensions/ebt_mark_m.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2004-01-14 20:05:27 +0000
committerBart De Schuymer <bdschuym@pandora.be>2004-01-14 20:05:27 +0000
commit9c16370646dcac6ba9803ffea4c552014f7eee11 (patch)
tree6bf8e02c571f1502c20489248e36890d9e9b3291 /userspace/ebtables2/extensions/ebt_mark_m.c
parent8c80b19bc2abf6f6cebc64018b0097a33548135d (diff)
Make ebtables library functions
Diffstat (limited to 'userspace/ebtables2/extensions/ebt_mark_m.c')
-rw-r--r--userspace/ebtables2/extensions/ebt_mark_m.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/userspace/ebtables2/extensions/ebt_mark_m.c b/userspace/ebtables2/extensions/ebt_mark_m.c
index 0d14d76..1c18d9e 100644
--- a/userspace/ebtables2/extensions/ebt_mark_m.c
+++ b/userspace/ebtables2/extensions/ebt_mark_m.c
@@ -40,8 +40,8 @@ static int parse(int c, char **argv, int argc, const struct ebt_u_entry *entry,
switch (c) {
case MARK:
- check_option(flags, MARK);
- if (check_inverse(optarg))
+ ebt_check_option(flags, MARK);
+ if (ebt_check_inverse(optarg))
markinfo->invert = 1;
if (optind > argc)
print_error("No mark specified");
@@ -118,5 +118,5 @@ static struct ebt_u_match mark_match =
static void _init(void) __attribute((constructor));
static void _init(void)
{
- register_match(&mark_match);
+ ebt_register_match(&mark_match);
}