From: Sean Bright Date: Thu, 10 Jun 2021 21:24:52 +0000 (-0400) Subject: menuselect: Fix description of several modules. X-Git-Tag: 16.19.0-rc1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e824138a26df2f4dbc1205b2db3d26845ba4fdfd;p=thirdparty%2Fasterisk.git 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 --- 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 ea9f35a5f1..42d638ffa1 100644 --- a/res/res_pjsip_stir_shaken.c +++ b/res/res_pjsip_stir_shaken.c @@ -375,8 +375,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,