diff options
author | Yasuyuki KOZAKAI <yasuyuki@netfilter.org> | 2007-07-24 06:03:45 +0000 |
---|---|---|
committer | Yasuyuki KOZAKAI <yasuyuki@netfilter.org> | 2007-07-24 06:03:45 +0000 |
commit | a620c61d441b931bc4a52ec07f1b906318ee4069 (patch) | |
tree | 4e3cebeb73608be53353d2ac1342dcceddcea1c2 /extensions/libip6t_LOG.c | |
parent | c0a9ab93f49a3d2508c95d0ca1a01c1089983731 (diff) |
Fixes warning on compilation of ip6tables matches/targets
This changes the type of arguments as follows
- ip6t_ip6 * -> void *
- ip6t_entry * -> void *
Diffstat (limited to 'extensions/libip6t_LOG.c')
-rw-r--r-- | extensions/libip6t_LOG.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/libip6t_LOG.c b/extensions/libip6t_LOG.c index ad65bd5c..7fdbc0c8 100644 --- a/extensions/libip6t_LOG.c +++ b/extensions/libip6t_LOG.c @@ -110,7 +110,7 @@ parse_level(const char *level) ate an option */ static int parse(int c, char **argv, int invert, unsigned int *flags, - const struct ip6t_entry *entry, + const void *entry, struct xt_entry_target **target) { struct ip6t_log_info *loginfo = (struct ip6t_log_info *)(*target)->data; @@ -206,7 +206,7 @@ static void final_check(unsigned int flags) /* Prints out the targinfo. */ static void -print(const struct ip6t_ip6 *ip, +print(const void *ip, const struct xt_entry_target *target, int numeric) { @@ -247,7 +247,7 @@ print(const struct ip6t_ip6 *ip, /* Saves the union ip6t_targinfo in parsable form to stdout. */ static void -save(const struct ip6t_ip6 *ip, const struct xt_entry_target *target) +save(const void *ip, const struct xt_entry_target *target) { const struct ip6t_log_info *loginfo = (const struct ip6t_log_info *)target->data; |