summaryrefslogtreecommitdiff
path: root/main/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/config.c')
-rw-r--r--main/config.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/config.c b/main/config.c
index 9527baa79..9400abd8c 100644
--- a/main/config.c
+++ b/main/config.c
@@ -2461,9 +2461,8 @@ static char *handle_cli_core_show_config_mappings(struct ast_cli_entry *e, int c
if (!config_engine_list) {
ast_cli(a->fd, "No config mappings found.\n");
} else {
- ast_cli(a->fd, "\n\n");
for (eng = config_engine_list; eng; eng = eng->next) {
- ast_cli(a->fd, "\nConfig Engine: %s\n", eng->name);
+ ast_cli(a->fd, "Config Engine: %s\n", eng->name);
for (map = config_maps; map; map = map->next) {
if (!strcasecmp(map->driver, eng->name)) {
ast_cli(a->fd, "===> %s (db=%s, table=%s)\n", map->name, map->database,
@@ -2471,7 +2470,6 @@ static char *handle_cli_core_show_config_mappings(struct ast_cli_entry *e, int c
}
}
}
- ast_cli(a->fd,"\n\n");
}
ast_mutex_unlock(&config_lock);