summaryrefslogtreecommitdiffstats
path: root/extensions/ebt_mark_m.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-08-13 16:08:08 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-08-13 16:08:08 +0000
commit9cfd654314d5718393b847758ded6ef86530e5c6 (patch)
tree5627fb56a1ba249a06561e8d47fc961560388ba8 /extensions/ebt_mark_m.c
parentb3dbdfb2b63c3f87edba502230b12e7daa5c354f (diff)
cosmetic improvements and some bugfixes (global description)
Diffstat (limited to 'extensions/ebt_mark_m.c')
-rw-r--r--extensions/ebt_mark_m.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/extensions/ebt_mark_m.c b/extensions/ebt_mark_m.c
index 5029738..9ecb07e 100644
--- a/extensions/ebt_mark_m.c
+++ b/extensions/ebt_mark_m.c
@@ -1,6 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
-#include <sys/socket.h>
#include <string.h>
#include <getopt.h>
#include "../include/ebtables_u.h"
@@ -25,9 +24,9 @@ static void init(struct ebt_entry_match *match)
{
struct ebt_mark_m_info *markinfo = (struct ebt_mark_m_info *)match->data;
- markinfo->mark = 0;
- markinfo->mask = 0;
- markinfo->invert = 0;
+ markinfo->mark = 0;
+ markinfo->mask = 0;
+ markinfo->invert = 0;
markinfo->bitmask = 0;
}
@@ -113,7 +112,7 @@ static struct ebt_u_match mark_match =
final_check,
print,
compare,
- opts,
+ opts
};
static void _init(void) __attribute((constructor));