aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-21 19:56:30 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-21 19:56:30 +0000
commitc935f50064239b836de23fab187181d06de02123 (patch)
tree7cc6d7377ce65bcd85b921240f43fdcab8c91c01 /main
parentf0779c48bc677b9b9eb4849297d8cad5342eec1b (diff)
restore printing of module name during loading
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40784 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/loader.c b/main/loader.c
index 27a6c9b60..518b45247 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -607,7 +607,7 @@ static enum ast_module_load_result load_resource(const char *resource_name, unsi
case AST_MODULE_LOAD_SUCCESS:
if (!ast_fully_booted) {
if (option_verbose)
- ast_verbose( " => (%s)\n", term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
+ ast_verbose("%s => (%s)\n", resource_name, term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
if (ast_opt_console && !option_verbose)
ast_verbose( ".");
} else {