diff --git a/apps/app_attended_transfer.c b/apps/app_attended_transfer.c index df8d83cd9b..5c61d43df1 100644 --- a/apps/app_attended_transfer.c +++ b/apps/app_attended_transfer.c @@ -140,4 +140,4 @@ static int load_module(void) return ast_register_application_xml(app, attended_transfer_exec); } -AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Attended transfer to the given extension"); +AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Attended transfer to the given extension"); diff --git a/apps/app_blind_transfer.c b/apps/app_blind_transfer.c index 1c3fbb27cb..fe0e483098 100644 --- a/apps/app_blind_transfer.c +++ b/apps/app_blind_transfer.c @@ -134,4 +134,4 @@ static int load_module(void) return ast_register_application_xml(app, blind_transfer_exec); } -AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Blind transfer channel to the given destination"); +AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Blind transfer channel to the given destination"); diff --git a/apps/app_talkdetect.c b/apps/app_talkdetect.c index 1463b149a6..a733f3a3db 100644 --- a/apps/app_talkdetect.c +++ b/apps/app_talkdetect.c @@ -254,4 +254,4 @@ static int load_module(void) return ast_register_application_xml(app, background_detect_exec); } -AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Playback with Talk Detection"); +AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Playback with Talk Detection"); diff --git a/res/res_http_websocket.c b/res/res_http_websocket.c index acf476e8ca..36dfa367fb 100644 --- a/res/res_http_websocket.c +++ b/res/res_http_websocket.c @@ -1521,7 +1521,7 @@ static int unload_module(void) } AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "HTTP WebSocket Support", - .support_level = AST_MODULE_SUPPORT_EXTENDED, + .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_CHANNEL_DEPEND,