--- extensions/libxt_comment.c | 2 +- include/linux/netfilter/xt_comment.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/libxt_comment.c b/extensions/libxt_comment.c index a9325a5..dba8bb2 100644 --- a/extensions/libxt_comment.c +++ b/extensions/libxt_comment.c @@ -86,7 +86,7 @@ comment_save(const void *ip, const struct xt_entry_match *match) commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; printf("--comment "); - xtables_save_string((const char *)commentinfo->comment); + xtables_save_string(commentinfo->comment); } static struct xtables_match comment_match = { diff --git a/include/linux/netfilter/xt_comment.h b/include/linux/netfilter/xt_comment.h index eacfedc..0ea5e79 100644 --- a/include/linux/netfilter/xt_comment.h +++ b/include/linux/netfilter/xt_comment.h @@ -4,7 +4,7 @@ #define XT_MAX_COMMENT_LEN 256 struct xt_comment_info { - unsigned char comment[XT_MAX_COMMENT_LEN]; + char comment[XT_MAX_COMMENT_LEN]; }; #endif /* XT_COMMENT_H */ -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html