From 60f0127018942259ac708815659636a000247b3d Mon Sep 17 00:00:00 2001 From: pabelanger Date: Mon, 5 Jul 2010 13:51:29 +0000 Subject: 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/branches/1.4@273884 f38db490-d61c-443f-a65b-d21fe96a405b --- main/config.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'main') diff --git a/main/config.c b/main/config.c index 05836b54f..f2b738c69 100644 --- a/main/config.c +++ b/main/config.c @@ -1484,16 +1484,14 @@ static int config_command(int fd, int argc, char **argv) ast_mutex_lock(&config_lock); - ast_cli(fd, "\n\n"); for (eng = config_engine_list; eng; eng = eng->next) { - ast_cli(fd, "\nConfig Engine: %s\n", eng->name); + ast_cli(fd, "Config Engine: %s\n", eng->name); for (map = config_maps; map; map = map->next) if (!strcasecmp(map->driver, eng->name)) { ast_cli(fd, "===> %s (db=%s, table=%s)\n", map->name, map->database, map->table ? map->table : map->name); } } - ast_cli(fd,"\n\n"); ast_mutex_unlock(&config_lock); -- cgit v1.2.3