summaryrefslogtreecommitdiffstats
path: root/include/libnftables/set.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-08-06 11:36:54 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-08-06 11:42:13 +0200
commitec75831c439ebd3475e0ba6766188d963538129a (patch)
tree399708dbe2dac766c27093c348e792e22d04ddc0 /include/libnftables/set.h
parent99d25746b94b602f7b0f2381b73e0f52d11fca31 (diff)
src: fully constify nft_*_get functions
We have several char * field that were not constify to avoid gcc compilation warnings when calling free. Since (99d2574 src: add xfree and use it), we can fully constify these objects fields without trouble. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/libnftables/set.h')
-rw-r--r--include/libnftables/set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libnftables/set.h b/include/libnftables/set.h
index 4fc3a8d..06380d4 100644
--- a/include/libnftables/set.h
+++ b/include/libnftables/set.h
@@ -26,7 +26,7 @@ void nft_set_attr_set(struct nft_set *s, uint16_t attr, const void *data);
void nft_set_attr_set_u32(struct nft_set *s, uint16_t attr, uint32_t val);
void nft_set_attr_set_str(struct nft_set *s, uint16_t attr, const char *str);
-void *nft_set_attr_get(struct nft_set *s, uint16_t attr);
+const void *nft_set_attr_get(struct nft_set *s, uint16_t attr);
const char *nft_set_attr_get_str(struct nft_set *s, uint16_t attr);
uint32_t nft_set_attr_get_u32(struct nft_set *s, uint16_t attr);