summaryrefslogtreecommitdiffstats
path: root/extensions/ebtable_filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/ebtable_filter.c')
-rw-r--r--extensions/ebtable_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/ebtable_filter.c b/extensions/ebtable_filter.c
index 724198c..904a857 100644
--- a/extensions/ebtable_filter.c
+++ b/extensions/ebtable_filter.c
@@ -4,7 +4,7 @@
#define FILTER_VALID_HOOKS ((1 << NF_BR_LOCAL_IN) | (1 << NF_BR_FORWARD) | \
(1 << NF_BR_LOCAL_OUT))
-static void print_help(char **hn)
+static void print_help(const char **hn)
{
int i;
@@ -24,5 +24,5 @@ static struct ebt_u_table table =
static void _init(void) __attribute__ ((constructor));
static void _init(void)
{
- register_table(&table);
+ ebt_register_table(&table);
}