diff options
Diffstat (limited to 'extensions/libip6t_hbh.c')
-rw-r--r-- | extensions/libip6t_hbh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/libip6t_hbh.c b/extensions/libip6t_hbh.c index bdcbf9b7..24a0485d 100644 --- a/extensions/libip6t_hbh.c +++ b/extensions/libip6t_hbh.c @@ -117,7 +117,7 @@ parse_options(const char *optsstr, u_int16_t *opts) /* Initialize the match. */ static void -init(struct ip6t_entry_match *m, unsigned int *nfcache) +init(struct xt_entry_match *m, unsigned int *nfcache) { struct ip6t_opts *optinfo = (struct ip6t_opts *)m->data; @@ -133,7 +133,7 @@ static int parse(int c, char **argv, int invert, unsigned int *flags, const struct ip6t_entry *entry, unsigned int *nfcache, - struct ip6t_entry_match **match) + struct xt_entry_match **match) { struct ip6t_opts *optinfo = (struct ip6t_opts *)(*match)->data; @@ -201,7 +201,7 @@ print_options(int optsnr, u_int16_t *optsp) /* Prints out the union ip6t_matchinfo. */ static void print(const struct ip6t_ip6 *ip, - const struct ip6t_entry_match *match, int numeric) + const struct xt_entry_match *match, int numeric) { const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; @@ -221,7 +221,7 @@ print(const struct ip6t_ip6 *ip, } /* Saves the union ip6t_matchinfo in parsable form to stdout. */ -static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match) +static void save(const struct ip6t_ip6 *ip, const struct xt_entry_match *match) { const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; |