summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_mark.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-05-26 13:14:06 +0200
committerJan Engelhardt <jengelh@medozas.de>2009-05-26 13:14:06 +0200
commit69f564e3890976461de0016cd81171ff8bfa8353 (patch)
tree38feb577177b07ff5e21e3838c3ec5f021748489 /extensions/libxt_mark.c
parent771871e1d9c39310cb6e2c595270d2e651309e6d (diff)
extensions: add const qualifiers in print/save functions
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions/libxt_mark.c')
-rw-r--r--extensions/libxt_mark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libxt_mark.c b/extensions/libxt_mark.c
index ceca9952..0edff748 100644
--- a/extensions/libxt_mark.c
+++ b/extensions/libxt_mark.c
@@ -110,7 +110,7 @@ mark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric)
static void
mark_print(const void *ip, const struct xt_entry_match *match, int numeric)
{
- struct xt_mark_info *info = (struct xt_mark_info *)match->data;
+ const struct xt_mark_info *info = (const void *)match->data;
printf("MARK match ");
@@ -134,7 +134,7 @@ static void mark_mt_save(const void *ip, const struct xt_entry_match *match)
static void
mark_save(const void *ip, const struct xt_entry_match *match)
{
- struct xt_mark_info *info = (struct xt_mark_info *)match->data;
+ const struct xt_mark_info *info = (const void *)match->data;
if (info->invert)
printf("! ");