dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 273884 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r273884 | pabelanger | 2010-07-05 09:51:29 -0400 (Mon, 05 Jul 2010) | 8 lines
  
  Remove extra line breaks from 'core show config mappings'
  
  (closes issue #17583)
  Reported by: pabelanger
  Patches:
        issue17583.patch uploaded by pabelanger (license 224)
  Tested by: lmadsen
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@273886 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
pabelanger 2010-07-05 13:53:44 +00:00
parent 6ceebe0705
commit 03cda8e901
1 changed files with 1 additions and 3 deletions

View File

@ -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);