Module: kamailio Branch: master Commit: e2de33b01efdd2c9799a1d5cf9d0e7d127a36416 URL: https://github.com/kamailio/kamailio/commit/e2de33b01efdd2c9799a1d5cf9d0e7d1...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2019-04-13T13:23:08+02:00
uac: log an error if uac module should use the dialog module and it can't bind the API
---
Modified: src/modules/uac/uac.c
---
Diff: https://github.com/kamailio/kamailio/commit/e2de33b01efdd2c9799a1d5cf9d0e7d1... Patch: https://github.com/kamailio/kamailio/commit/e2de33b01efdd2c9799a1d5cf9d0e7d1...
---
diff --git a/src/modules/uac/uac.c b/src/modules/uac/uac.c index d74c1cf47f..8528027f7e 100644 --- a/src/modules/uac/uac.c +++ b/src/modules/uac/uac.c @@ -295,14 +295,17 @@ static int mod_init(void) /* we need the append_fromtag on in RR */
memset(&dlg_api, 0, sizeof(struct dlg_binds)); - if (uac_restore_dlg==0 || load_dlg_api(&dlg_api)!=0) { + if (uac_restore_dlg==0) { if (!uac_rrb.append_fromtag) { LM_ERR("'append_fromtag' RR param is not enabled!" " - required by AUTO restore mode\n"); goto error; } - if (uac_restore_dlg!=0) - LM_DBG("failed to find dialog API - is dialog module loaded?\n"); + } else { + if (load_dlg_api(&dlg_api)!=0) { + LM_ERR("failed to find dialog API - is dialog module loaded?\n"); + goto error; + } }
/* get all requests doing loose route */