[svn-commits] eliel: branch eliel/data_api_providers_gsoc2010 r270252 - /team/eliel/data_ap...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 14 12:08:58 CDT 2010


Author: eliel
Date: Mon Jun 14 12:08:55 2010
New Revision: 270252

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=270252
Log:
Fix an issue with the cli command 'data get' when printing the output.


Modified:
    team/eliel/data_api_providers_gsoc2010/main/data.c

Modified: team/eliel/data_api_providers_gsoc2010/main/data.c
URL: http://svnview.digium.com/svn/asterisk/team/eliel/data_api_providers_gsoc2010/main/data.c?view=diff&rev=270252&r1=270251&r2=270252
==============================================================================
--- team/eliel/data_api_providers_gsoc2010/main/data.c (original)
+++ team/eliel/data_api_providers_gsoc2010/main/data.c Mon Jun 14 12:08:55 2010
@@ -2634,7 +2634,7 @@
 
 	ast_term_color_code(&output, COLOR_WHITE, 0);
 
-	ast_cli(fd, "%s", ast_str_buffer(output));
+	ast_cli(fd, "%s\n", ast_str_buffer(output));
 
 	ast_free(output);
 




More information about the svn-commits mailing list