From 5e5e9ad5bcfdd8db6a5507c90a9c8656ce6535fc Mon Sep 17 00:00:00 2001 From: Fabrice Bellet Date: Fri, 2 Aug 2019 13:19:26 +0000 Subject: conncheck: fix a wrong transport value in debug --- agent/conncheck.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/agent/conncheck.c b/agent/conncheck.c index 36774aa..a2e370d 100644 --- a/agent/conncheck.c +++ b/agent/conncheck.c @@ -1217,8 +1217,10 @@ priv_conn_check_tick_stream_nominate (NiceStream *stream, NiceAgent *agent) nice_debug ("Agent %p : restarting check of %s:%s pair %p with " "USE-CANDIDATE attrib (regular nomination) for " "stream %d component %d", agent, - priv_candidate_transport_to_string (lcand1->transport), - priv_candidate_transport_to_string (rcand1->transport), + priv_candidate_transport_to_string ( + this_component_pair->local->transport), + priv_candidate_transport_to_string ( + this_component_pair->remote->transport), this_component_pair, stream->id, component->id); this_component_pair->use_candidate_on_next_check = TRUE; priv_add_pair_to_triggered_check_queue (agent, this_component_pair); -- cgit v1.2.1