summaryrefslogtreecommitdiffstats
path: root/src/expr/payload.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2017-01-13 11:50:09 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2017-01-16 11:32:46 +0100
commit6876487abd8041cd2a718ed7dd9ff6d86560b1ee (patch)
treecd0697808b0e04d27d9f70d585ef7e52d6a50161 /src/expr/payload.c
parent046c3a145dc05cba8063c6702c4d60db079950d9 (diff)
expr: Add const qualifiers to *2str translation arrays
Add const qualifiers to the "to string" translation arrays used by various *2str() functions. This fixes GCC warnings such as the following when compiling with -Wwrite-strings: expr/byteorder.c:176:25: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] In order to catch these in the future, also add -Wwrite-strings to default CFLAGS. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr/payload.c')
-rw-r--r--src/expr/payload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr/payload.c b/src/expr/payload.c
index d655857..91e1587 100644
--- a/src/expr/payload.c
+++ b/src/expr/payload.c
@@ -203,7 +203,7 @@ nftnl_expr_payload_parse(struct nftnl_expr *e, struct nlattr *attr)
return 0;
}
-static char *base2str_array[NFT_PAYLOAD_TRANSPORT_HEADER+1] = {
+static const char *base2str_array[NFT_PAYLOAD_TRANSPORT_HEADER+1] = {
[NFT_PAYLOAD_LL_HEADER] = "link",
[NFT_PAYLOAD_NETWORK_HEADER] = "network",
[NFT_PAYLOAD_TRANSPORT_HEADER] = "transport",