This spot was missed by commit
2b3f18e0cf7a7 ("libnftables: Fix for
input without trailing newline") - since line termination is now added
in nft_run_cmd_from_buffer(), cli is relieved from doing so.
Fixes: 2b3f18e0cf7a7 ("libnftables: Fix for input without trailing newline")
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
const HIST_ENTRY *hist;
const char *c;
LIST_HEAD(msgs);
- int len;
- char *s;
if (line == NULL) {
printf("\n");
if (hist == NULL || strcmp(hist->line, line))
add_history(line);
- len = strlen(line);
- s = xmalloc(len + 2);
- snprintf(s, len + 2, "%s\n", line);
- xfree(line);
- line = s;
-
- nft_run_cmd_from_buffer(cli_nft, line, len + 2);
+ nft_run_cmd_from_buffer(cli_nft, line, strlen(line) + 1);
xfree(line);
}