ha: Fix arguments in debug statement when destroying incomplete IKE_SAs

Closes strongswan/strongswan#2781

Fixes: 97bd0e2297ed ("ha: Destroy incomplete IKE_SAs after de-/activating a segment")
This commit is contained in:
Tobias Brunner 2025-05-12 15:56:27 +02:00
parent a1a477528f
commit 2ee768ec4e

View File

@ -213,7 +213,7 @@ static void enable_disable(private_ha_segments_t *this, u_int segment,
{
DBG1(DBG_IKE, "destroying incomplete IKE_SA %s[%d] after "
"%sactivating HA segment %d", ike_sa->get_name(ike_sa),
unique_id, segment, enable ? "" : "de");
unique_id, enable ? "" : "de", segment);
charon->ike_sa_manager->checkin_and_destroy(charon->ike_sa_manager,
ike_sa);
}