From: Pablo Neira Ayuso Date: Wed, 31 Aug 2022 14:52:51 +0000 (+0200) Subject: rule, set_elem: remove trailing \n in userdata snprintf X-Git-Tag: libnftnl-1.2.4~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c759027a526ac09ce413dc88c308a4ed98b33416;p=thirdparty%2Flibnftnl.git 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 --- diff --git a/src/rule.c b/src/rule.c index a1a64bd2..a52012b2 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 1c8720dc..884faff4 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); }