mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Remove redundant module checks and references.
This removes references that are no longer needed due to automatic references created by module dependencies. In addition this removes most calls to ast_module_check as they were checking modules which are listed as dependencies. Change-Id: I332a6e8383d4c72c8e89d988a184ab8320c4872e
This commit is contained in:
@@ -920,13 +920,6 @@ static int load_module(void)
|
||||
{
|
||||
int res;
|
||||
|
||||
if (!ast_module_check("res_curl.so")) {
|
||||
if (ast_load_resource("res_curl.so") != AST_MODULE_LOAD_SUCCESS) {
|
||||
ast_log(LOG_ERROR, "Cannot load res_curl, so func_curl cannot be loaded\n");
|
||||
return AST_MODULE_LOAD_DECLINE;
|
||||
}
|
||||
}
|
||||
|
||||
res = ast_custom_function_register_escalating(&acf_curl, AST_CFE_WRITE);
|
||||
res |= ast_custom_function_register(&acf_curlopt);
|
||||
|
||||
@@ -940,4 +933,5 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Load external URL",
|
||||
.load = load_module,
|
||||
.unload = unload_module,
|
||||
.load_pri = AST_MODPRI_REALTIME_DEPEND2,
|
||||
.requires = "res_curl",
|
||||
);
|
||||
|
Reference in New Issue
Block a user