Commit 2ceb2083 authored by Olivier Crête's avatar Olivier Crête

conncheck: Pass arguments in the right order

The order of the passed arguments doesn't match the prototype of the
function. We exchange the local and remote candidates.
parent d1b4ba54
...@@ -4775,7 +4775,7 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream, ...@@ -4775,7 +4775,7 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream,
} }
/* RENOMINATION attribute support */ /* RENOMINATION attribute support */
conn_check_handle_renomination(agent, stream, component, &req, local_candidate, remote_candidate); conn_check_handle_renomination(agent, stream, component, &req, remote_candidate, local_candidate);
return TRUE; return TRUE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment