From c0fc8adbb6a509927b5f84afaa377cf37e42343a Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Thu, 10 Jun 2021 17:24:52 -0400 Subject: [PATCH] menuselect: Fix description of several modules. The text description needs to be the last thing on the AST_MODULE_INFO line to be pulled in properly by menuselect. Change-Id: I0c913e36fea8b661f42e56920b6c5513ae8fd832 --- res/res_format_attr_ilbc.c | 3 +-- res/res_pjsip_stir_shaken.c | 3 +-- res/res_stir_shaken.c | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/res/res_format_attr_ilbc.c b/res/res_format_attr_ilbc.c index ec335995f7..4addce854a 100644 --- a/res/res_format_attr_ilbc.c +++ b/res/res_format_attr_ilbc.c @@ -171,8 +171,7 @@ static int unload_module(void) return 0; } -AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, - "iLBC Format Attribute Module", +AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "iLBC Format Attribute Module", .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, diff --git a/res/res_pjsip_stir_shaken.c b/res/res_pjsip_stir_shaken.c index df2aaf0bb1..de1513bd7d 100644 --- a/res/res_pjsip_stir_shaken.c +++ b/res/res_pjsip_stir_shaken.c @@ -372,8 +372,7 @@ static int load_module(void) #undef AST_BUILDOPT_SUM #define AST_BUILDOPT_SUM "" -AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, - "PJSIP STIR/SHAKEN Module for Asterisk", +AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "PJSIP STIR/SHAKEN Module for Asterisk", .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, diff --git a/res/res_stir_shaken.c b/res/res_stir_shaken.c index dbc2de08c4..1d8c785653 100644 --- a/res/res_stir_shaken.c +++ b/res/res_stir_shaken.c @@ -1667,8 +1667,7 @@ static int load_module(void) return res; } -AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, - "STIR/SHAKEN Module for Asterisk", +AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "STIR/SHAKEN Module for Asterisk", .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module,