Skip to content

Commit

Permalink
clusterer: fix parameters for E_CLUSTERER_REQ_RECEIVED event
Browse files Browse the repository at this point in the history
Fixes #2899

(cherry picked from commit c6cc088)
  • Loading branch information
rvlad-patrascu committed Aug 25, 2022
1 parent b7d007d commit 600d56a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/clusterer/clusterer.c
Expand Up @@ -930,7 +930,7 @@ static void handle_cl_gen_msg(bin_packet_t *packet, int cluster_id, int source_i
bin_pop_str(packet, &rcv_tag);
bin_pop_str(packet, &rcv_msg);

if (raise_gen_msg_ev(cluster_id, source_id, req_like, &rcv_tag, &rcv_msg)) {
if (raise_gen_msg_ev(cluster_id, source_id, req_like, &rcv_msg, &rcv_tag)) {
LM_ERR("Failed to raise event for a received generic message!\n");
return;
}
Expand Down

0 comments on commit 600d56a

Please sign in to comment.