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_helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/libxt_helper.c') diff --git a/extensions/libxt_helper.c b/extensions/libxt_helper.c index 8378be75..7b56bef4 100644 --- a/extensions/libxt_helper.c +++ b/extensions/libxt_helper.c @@ -55,14 +55,14 @@ static void helper_check(unsigned int flags) static void helper_print(const void *ip, const struct xt_entry_match *match, int numeric) { - struct xt_helper_info *info = (struct xt_helper_info *)match->data; + const struct xt_helper_info *info = (const void *)match->data; printf("helper match %s\"%s\" ", info->invert ? "! " : "", info->name); } static void helper_save(const void *ip, const struct xt_entry_match *match) { - struct xt_helper_info *info = (struct xt_helper_info *)match->data; + const struct xt_helper_info *info = (const void *)match->data; printf("%s--helper ",info->invert ? "! " : ""); xtables_save_string(info->name); -- cgit v1.2.3