Skip to content

Commit

Permalink
ims_charging: add missing change for ccr.c (related to previous commit
Browse files Browse the repository at this point in the history
…f5e4425)

(cherry picked from commit 4cb61cc)
  • Loading branch information
henningw committed Jul 2, 2020
1 parent 38df9e5 commit 475e3d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/modules/ims_charging/ccr.c
Expand Up @@ -215,7 +215,11 @@ AAAMessage * Ro_write_CCR_avps(AAAMessage * ccr, Ro_CCR_t* x) {
if (x->origin_realm.s && x->origin_realm.len > 0) {
if (!cdp_avp->base.add_Origin_Realm(&(ccr->avpList), x->origin_realm, 0)) goto error;
}


if (x->destination_host.s && x->destination_host.len > 0) {
if (!cdp_avp->base.add_Destination_Host(&(ccr->avpList), x->destination_host, 0)) goto error;
}

if (x->destination_realm.s && x->destination_realm.len > 0) {
if (!ro_add_destination_realm_avp(ccr, x->destination_realm)) goto error;
}
Expand Down

0 comments on commit 475e3d9

Please sign in to comment.