[asterisk-commits] pabelanger: trunk r273886 - in /trunk: ./ main/config.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 5 08:53:48 CDT 2010
Author: pabelanger
Date: Mon Jul 5 08:53:44 2010
New Revision: 273886
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=273886
Log:
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
........
Modified:
trunk/ (props changed)
trunk/main/config.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/config.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/config.c?view=diff&rev=273886&r1=273885&r2=273886
==============================================================================
--- trunk/main/config.c (original)
+++ trunk/main/config.c Mon Jul 5 08:53:44 2010
@@ -2461,9 +2461,8 @@
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 @@
}
}
}
- ast_cli(a->fd,"\n\n");
}
ast_mutex_unlock(&config_lock);
More information about the asterisk-commits
mailing list