summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-05-05 21:05:09 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-05-05 21:05:10 -0500
commit50e90f91217bb8804754b5f290a3f9c8d26181cb (patch)
treee680b04998f8e1d0346e15d08ac18943b86f5417
parent8b0f85ac06d4ebbb8684e5c857724a3d1accde64 (diff)
parent69ae8cf0a4c441c1ebfab0da423cc1acfcc8c7aa (diff)
Merge "pbx_config: Register manager actions with module version of macro." into 13
-rw-r--r--pbx/pbx_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 79260bbad..b03642504 100644
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -2080,9 +2080,9 @@ static int load_module(void)
ast_cli_register(&cli_dialplan_save);
ast_cli_register_multiple(cli_pbx_config, ARRAY_LEN(cli_pbx_config));
- res = ast_manager_register_xml_core(AMI_EXTENSION_ADD,
+ res = ast_manager_register_xml(AMI_EXTENSION_ADD,
EVENT_FLAG_SYSTEM, manager_dialplan_extension_add);
- res |= ast_manager_register_xml_core(AMI_EXTENSION_REMOVE,
+ res |= ast_manager_register_xml(AMI_EXTENSION_REMOVE,
EVENT_FLAG_SYSTEM, manager_dialplan_extension_remove);
if (res) {