diff options
author | Corubba Smith <corubba@gmx.de> | 2025-02-16 15:02:45 +0100 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2025-03-11 16:14:00 +0100 |
commit | 2d8b64ab788ea2fbe19de03a10b5f7e7237cff31 (patch) | |
tree | 2aaebd1de93fbf210dc90865feb9e137f51d3233 | |
parent | cee44b4bb0d45868807440317376032f1f186ede (diff) |
nfct: add newline to reliable log message
Fixes: 4bc3b22e426d ("NFCT: add `reliable' config option to enable reliable flow-based logging")
Signed-off-by: Corubba Smith <corubba@gmx.de>
Signed-off-by: Florian Westphal <fw@strlen.de>
-rw-r--r-- | input/flow/ulogd_inpflow_NFCT.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input/flow/ulogd_inpflow_NFCT.c b/input/flow/ulogd_inpflow_NFCT.c index 5ac24e5..bdfd7dd 100644 --- a/input/flow/ulogd_inpflow_NFCT.c +++ b/input/flow/ulogd_inpflow_NFCT.c @@ -1327,7 +1327,7 @@ static int constructor_nfct_events(struct ulogd_pluginstance *upi) setsockopt(nfct_fd(cpi->cth), SOL_NETLINK, NETLINK_NO_ENOBUFS, &on, sizeof(int)); ulogd_log(ULOGD_NOTICE, "NFCT reliable logging " - "has been enabled."); + "has been enabled.\n"); } cpi->nfct_fd.fd = nfct_fd(cpi->cth); cpi->nfct_fd.cb = &read_cb_nfct; |