mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
clean up module version number output
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5863 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
5
loader.c
5
loader.c
@@ -574,7 +574,10 @@ int ast_update_module_list(int (*modentry)(const char *module, const char *descr
|
||||
unlock = 0;
|
||||
m = module_list;
|
||||
while (m) {
|
||||
total_mod_loaded += modentry(m->resource, m->description(), m->usecount(), m->version(), like);
|
||||
char ver_string[80];
|
||||
|
||||
ast_copy_string(ver_string, m->version(), sizeof(ver_string));
|
||||
total_mod_loaded += modentry(m->resource, m->description(), m->usecount(), ast_strip(ast_strip_quoted(ver_string, "$", "$")), like);
|
||||
m = m->next;
|
||||
}
|
||||
if (unlock)
|
||||
|
Reference in New Issue
Block a user