summaryrefslogtreecommitdiffstats
path: root/src/cc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cc.c')
-rw-r--r--src/cc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cc.c b/src/cc.c
index ce75104..b886e6e 100644
--- a/src/cc.c
+++ b/src/cc.c
@@ -1597,11 +1597,12 @@ static void dect_cc_shutdown(struct dect_handle *dh,
struct dect_transaction *ta)
{
struct dect_call *call = container_of(ta, struct dect_call, transaction);
+ struct dect_mncc_release_param param = {};
cc_debug(call, "shutdown");
cc_debug(call, "MNCC_REJECT-ind");
- dh->ops->cc_ops->mncc_reject_ind(dh, call, NULL);
+ dh->ops->cc_ops->mncc_reject_ind(dh, call, &param);
dect_call_disconnect_uplane(dh, call);
dect_transaction_close(dh, &call->transaction, DECT_DDL_RELEASE_NORMAL);
dect_call_destroy(dh, call);