From dccd71c182041a3936a90ef85961de7c0b2f3c9a Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 18 Mar 2021 10:32:01 -0400 Subject: [PATCH] nhrpd: Remove newline from log message We should not be putting new lines in log messages. Signed-off-by: Donald Sharp --- nhrpd/nhrp_nhs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nhrpd/nhrp_nhs.c b/nhrpd/nhrp_nhs.c index de1bdbd16a..ae5737d736 100644 --- a/nhrpd/nhrp_nhs.c +++ b/nhrpd/nhrp_nhs.c @@ -123,7 +123,7 @@ static int nhrp_reg_timeout(struct thread *t) */ if (r->peer && r->peer->vc && r->peer->vc->ike_uniqueid) { debugf(NHRP_DEBUG_COMMON, - "Terminating IPSec Connection for %d\n", + "Terminating IPSec Connection for %d", r->peer->vc->ike_uniqueid); vici_terminate_vc_by_ike_id(r->peer->vc->ike_uniqueid); r->peer->vc->ike_uniqueid = 0; -- 2.39.5