Skip to content

Commit

Permalink
topos: fix event_mode parameter type (GH #2115)
Browse files Browse the repository at this point in the history
  • Loading branch information
btriller authored and henningw committed Oct 31, 2019
1 parent 63334e3 commit d9c603d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/topos/topos_mod.c
Expand Up @@ -121,15 +121,15 @@ static cmd_export_t cmds[]={
};

static param_export_t params[]={
{"storage", PARAM_STR, &_tps_storage},
{"db_url", PARAM_STR, &_tps_db_url},
{"storage", PARAM_STR, &_tps_storage},
{"db_url", PARAM_STR, &_tps_db_url},
{"mask_callid", PARAM_INT, &_tps_param_mask_callid},
{"sanity_checks", PARAM_INT, &_tps_sanity_checks},
{"branch_expire", PARAM_INT, &_tps_branch_expire},
{"dialog_expire", PARAM_INT, &_tps_dialog_expire},
{"clean_interval", PARAM_INT, &_tps_clean_interval},
{"event_callback", PARAM_STR, &_tps_eventrt_callback},
{"event_mode", PARAM_STR, &_tps_eventrt_mode},
{"event_mode", PARAM_INT, &_tps_eventrt_mode},
{"contact_host", PARAM_STR, &_tps_contact_host},
{0,0,0}
};
Expand Down

0 comments on commit d9c603d

Please sign in to comment.