summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2022-08-31 16:52:51 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2022-08-31 16:54:46 +0200
commitc759027a526ac09ce413dc88c308a4ed98b33416 (patch)
treedb67ec326914f60c9706e2b2dc76e6f78b66224d /src
parent212479ad2c9200fa858a37de14a2e5e996f10105 (diff)
rule, set_elem: remove trailing \n in userdata snprintf
212479ad2c92 ("rule, set_elem: fix printing of user data") uncovered another an extra line break in the userdata printing, remove it. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/rule.c2
-rw-r--r--src/set_elem.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rule.c b/src/rule.c
index a1a64bd..a52012b 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -628,7 +628,7 @@ static int nftnl_rule_snprintf_default(char *buf, size_t remain,
SNPRINTF_BUFFER_SIZE(ret, remain, offset);
}
- ret = snprintf(buf + offset, remain, " }\n");
+ ret = snprintf(buf + offset, remain, " }");
SNPRINTF_BUFFER_SIZE(ret, remain, offset);
}
diff --git a/src/set_elem.c b/src/set_elem.c
index 1c8720d..884faff 100644
--- a/src/set_elem.c
+++ b/src/set_elem.c
@@ -747,7 +747,7 @@ int nftnl_set_elem_snprintf_default(char *buf, size_t remain,
SNPRINTF_BUFFER_SIZE(ret, remain, offset);
}
- ret = snprintf(buf + offset, remain, " }\n");
+ ret = snprintf(buf + offset, remain, " }");
SNPRINTF_BUFFER_SIZE(ret, remain, offset);
}