Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netfilter: xt_comment: drop unneeded unsigned qualifier

Since a string is stored, and not something like a MAC address that
would rely on (un)signedness, drop the qualifier.

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

Jan Engelhardt and committed by
Pablo Neira Ayuso
5df15196 c6d2d445

+1 -1
+1 -1
include/linux/netfilter/xt_comment.h
··· 4 4 #define XT_MAX_COMMENT_LEN 256 5 5 6 6 struct xt_comment_info { 7 - unsigned char comment[XT_MAX_COMMENT_LEN]; 7 + char comment[XT_MAX_COMMENT_LEN]; 8 8 }; 9 9 10 10 #endif /* XT_COMMENT_H */