Fix menuselect display for stasis modules.

The menuselect parser is very simple.  It looks for AST_MODULE_INFO and
uses any quoted string on that line as the module summary display.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392777 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2013-06-24 21:40:52 +00:00
parent 463470bb6e
commit b5f18d1677
26 changed files with 33 additions and 62 deletions

View File

@@ -316,9 +316,7 @@ static int reload_module(void)
/* The priority of this module is set to be as low as possible, since it could
* be used by any other sort of module.
*/
AST_MODULE_INFO(ASTERISK_GPL_KEY,
AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER,
"Statsd client support",
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "Statsd client support",
.load = load_module,
.unload = unload_module,
.reload = reload_module,