summaryrefslogtreecommitdiffstats
path: root/src/obj/secmark.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2021-03-09 12:01:19 +0100
committerPhil Sutter <phil@nwl.cc>2021-03-15 12:23:17 +0100
commit4f6e671b462180ba9af12bd30211811b5fca8cb1 (patch)
tree7ecc8024dc399b138757c7903686ec6ca5ff45bb /src/obj/secmark.c
parent483050de7ceb60515541a7e83d07b8fdb7a2faf5 (diff)
obj: Drop type parameter from snprintf callback
Objects don't support any other output type than NFTNL_OUTPUT_DEFAULT, so just drop the parameter. Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'src/obj/secmark.c')
-rw-r--r--src/obj/secmark.c23
1 files changed, 3 insertions, 20 deletions
diff --git a/src/obj/secmark.c b/src/obj/secmark.c
index e27b5fa..2ccc803 100644
--- a/src/obj/secmark.c
+++ b/src/obj/secmark.c
@@ -98,30 +98,13 @@ nftnl_obj_secmark_parse(struct nftnl_obj *e, struct nlattr *attr)
return 0;
}
-static int nftnl_obj_secmark_snprintf_default(char *buf, size_t len,
- const struct nftnl_obj *e)
-{
- struct nftnl_obj_secmark *secmark = nftnl_obj_data(e);
-
- return snprintf(buf, len, "context %s ", secmark->ctx);
-}
-
-static int nftnl_obj_secmark_snprintf(char *buf, size_t len, uint32_t type,
+static int nftnl_obj_secmark_snprintf(char *buf, size_t len,
uint32_t flags,
const struct nftnl_obj *e)
{
- if (len)
- buf[0] = '\0';
+ struct nftnl_obj_secmark *secmark = nftnl_obj_data(e);
- switch (type) {
- case NFTNL_OUTPUT_DEFAULT:
- return nftnl_obj_secmark_snprintf_default(buf, len, e);
- case NFTNL_OUTPUT_XML:
- case NFTNL_OUTPUT_JSON:
- default:
- break;
- }
- return -1;
+ return snprintf(buf, len, "context %s ", secmark->ctx);
}
struct obj_ops obj_ops_secmark = {