aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-12 05:46:39 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-12 05:46:39 +0000
commit4367e584de0983c7700b576a42ef77648b665cf6 (patch)
tree82ec307a0338e96f20c3a3a136774ef28b4dc0c2 /main
parent97993e3cd9afad05564da745bc05dba3fbbfb776 (diff)
Revert several changes from revision 102525, as the changes were not
compatible, and, in fact, introduced regressions. (Closes issue #12190) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@107960 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/loader.c b/main/loader.c
index d34da9f7d..e05bac4e3 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -699,8 +699,8 @@ static enum ast_module_load_result load_resource(const char *resource_name, unsi
case AST_MODULE_LOAD_SUCCESS:
if (!ast_fully_booted) {
ast_verb(1, "%s => (%s)\n", resource_name, term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
- if (ast_opt_console)
- ast_verb(0, ".");
+ if (ast_opt_console && !option_verbose)
+ ast_verbose( ".");
} else {
ast_verb(1, "Loaded %s => (%s)\n", resource_name, mod->info->description);
}