Skip to content

Commit

Permalink
rtp_relay: fix typo in test for ACK in late
Browse files Browse the repository at this point in the history
(cherry picked from commit 118dceb)
  • Loading branch information
razvancrainea committed Aug 9, 2022
1 parent 56eacbe commit b9a1cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtp_relay/rtp_relay_ctx.c
Expand Up @@ -747,7 +747,7 @@ static void rtp_relay_indlg(struct dlg_cell* dlg, int type, struct dlg_cb_params
if (!ret)
return;
if (msg->REQ_METHOD == METHOD_ACK) {
if (ctx->main || !rtp_sess_late(ctx->main))
if (!ctx->main || !rtp_sess_late(ctx->main))
return;
memset(&info, 0, sizeof info);
info.msg = msg;
Expand Down

0 comments on commit b9a1cb0

Please sign in to comment.