mirror of
https://github.com/asterisk/asterisk.git
synced 2026-01-06 18:13:45 +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:
@@ -165,7 +165,7 @@ void ast_sip_initialize_global_headers(void)
|
||||
AST_RWLIST_HEAD_INIT(&request_headers);
|
||||
AST_RWLIST_HEAD_INIT(&response_headers);
|
||||
|
||||
internal_sip_register_service(&global_header_mod);
|
||||
ast_sip_register_service(&global_header_mod);
|
||||
}
|
||||
|
||||
static void destroy_headers(struct header_list *headers)
|
||||
@@ -183,5 +183,5 @@ void ast_sip_destroy_global_headers(void)
|
||||
destroy_headers(&request_headers);
|
||||
destroy_headers(&response_headers);
|
||||
|
||||
internal_sip_unregister_service(&global_header_mod);
|
||||
ast_sip_unregister_service(&global_header_mod);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user