From 69f564e3890976461de0016cd81171ff8bfa8353 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 26 May 2009 13:14:06 +0200 Subject: extensions: add const qualifiers in print/save functions Signed-off-by: Jan Engelhardt --- extensions/libxt_connmark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/libxt_connmark.c') diff --git a/extensions/libxt_connmark.c b/extensions/libxt_connmark.c index 2dca5a50..ce2002ce 100644 --- a/extensions/libxt_connmark.c +++ b/extensions/libxt_connmark.c @@ -121,7 +121,7 @@ static void connmark_mt_check(unsigned int flags) static void connmark_print(const void *ip, const struct xt_entry_match *match, int numeric) { - struct xt_connmark_info *info = (struct xt_connmark_info *)match->data; + const struct xt_connmark_info *info = (const void *)match->data; printf("CONNMARK match "); if (info->invert) @@ -142,7 +142,7 @@ connmark_mt_print(const void *ip, const struct xt_entry_match *match, int numeri static void connmark_save(const void *ip, const struct xt_entry_match *match) { - struct xt_connmark_info *info = (struct xt_connmark_info *)match->data; + const struct xt_connmark_info *info = (const void *)match->data; if (info->invert) printf("! "); -- cgit v1.2.3