aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter/xt_comment.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-12-26 10:22:22 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2011-01-13 12:05:11 +0100
commit5df15196a2bbf16ca4c6a797ec00ff36d0d5c179 (patch)
tree1ce28e0a92ef00a926ff98b81dff6cfd78831a61 /include/linux/netfilter/xt_comment.h
parentIPVS: netns, final patch enabling network name space. (diff)
downloadlinux-dev-5df15196a2bbf16ca4c6a797ec00ff36d0d5c179.tar.xz
linux-dev-5df15196a2bbf16ca4c6a797ec00ff36d0d5c179.zip
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>
Diffstat (limited to '')
-rw-r--r--include/linux/netfilter/xt_comment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter/xt_comment.h b/include/linux/netfilter/xt_comment.h
index eacfedc6b5d0..0ea5e79f5bd7 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 */