summaryrefslogtreecommitdiffstats
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
parentc6d2d445d8dee04cde47eb4021636399a4239e9f (diff)
downloadop-kernel-dev-5df15196a2bbf16ca4c6a797ec00ff36d0d5c179.zip
op-kernel-dev-5df15196a2bbf16ca4c6a797ec00ff36d0d5c179.tar.gz
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 'include/linux/netfilter/xt_comment.h')
-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 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 */
OpenPOWER on IntegriCloud