summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2024-11-06 23:31:06 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2024-11-11 11:39:33 +0100
commit1e0b74fae4d5f15c48ccabfe2fe147a78a5341d6 (patch)
treec0efc7f95271fc7bcf0bf94827951f5b87edb10f /include
parent83eaf50c36fe8710ae6b6f991f5f7c7e2ec8d513 (diff)
datatype: remove unused flags field
Leftover unused struct datatype field, remove it. Fixes: e35aabd511c4 ("datatype: replace DTYPE_F_ALLOC by bitfield") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r--include/datatype.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/datatype.h b/include/datatype.h
index df3bc385..75d6d6b8 100644
--- a/include/datatype.h
+++ b/include/datatype.h
@@ -126,7 +126,6 @@ struct parse_ctx;
*
* @type: numeric identifier
* @byteorder: byteorder of type (non-basetypes only)
- * @flags: flags
* @size: type size (fixed sized non-basetypes only)
* @subtypes: number of subtypes (concat type)
* @name: type name
@@ -142,7 +141,6 @@ struct datatype {
uint32_t type;
enum byteorder byteorder:8;
uint32_t alloc:1;
- unsigned int flags;
unsigned int size;
unsigned int subtypes;
const char *name;