[svn-commits] eliel: branch group/data_api_gsoc2009 r210767 - /team/group/data_api_gsoc2009...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Aug 5 19:55:43 CDT 2009


Author: eliel
Date: Wed Aug  5 19:55:39 2009
New Revision: 210767

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=210767
Log:
Minor changes...


Modified:
    team/group/data_api_gsoc2009/main/data.c

Modified: team/group/data_api_gsoc2009/main/data.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/data_api_gsoc2009/main/data.c?view=diff&rev=210767&r1=210766&r2=210767
==============================================================================
--- team/group/data_api_gsoc2009/main/data.c (original)
+++ team/group/data_api_gsoc2009/main/data.c Wed Aug  5 19:55:39 2009
@@ -2450,7 +2450,7 @@
 	}
 
 	ast_term_color_code(&output, data_result_get_color(root->type), 0);
-	ast_str_append(&output, 0, "%s (container)\n", root->name);
+	ast_str_append(&output, 0, "%s\n", root->name);
 	ast_term_color_code(&output, COLOR_WHITE, 0);
 	ast_cli(fd, "%s", ast_str_buffer(output));
 	ast_free(output);
@@ -2579,13 +2579,14 @@
 
 	return CLI_SUCCESS;
 }
+
 /*!
  * \internal
  * \brief Data API CLI commands.
  */
 static struct ast_cli_entry cli_data[] = {
 	AST_CLI_DEFINE(handle_cli_data_get, "Data API get"),
-	AST_CLI_DEFINE(handle_cli_data_show_providers, "Show providers")
+	AST_CLI_DEFINE(handle_cli_data_show_providers, "Show data providers")
 };
 
 int ast_data_init(void)




More information about the svn-commits mailing list