From 6cbf69981d7efbdb6ff30fb3c7511f61573578d4 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 6 Jun 2005 18:42:15 +0000 Subject: [PATCH] clean up module version number output git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5863 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- loader.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/loader.c b/loader.c index 6c3f9ef21c..b404fa0fa4 100755 --- a/loader.c +++ b/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)