From: Corey Farrell Date: Thu, 13 Sep 2018 18:03:15 +0000 (-0400) Subject: Resolve warning about duplicate 'dialplan' CLI. X-Git-Tag: 15.7.0-rc1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8b71fadaba88b0421882cf0b8307108e38031ca;p=thirdparty%2Fasterisk.git Resolve warning about duplicate 'dialplan' CLI. Change-Id: I029db1b4a32ccfb38374d6fe944dc430866f4b30 --- diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c index b1d5d533e2..9bb2796c87 100644 --- a/pbx/pbx_config.c +++ b/pbx/pbx_config.c @@ -1610,12 +1610,11 @@ static struct ast_cli_entry cli_pbx_config[] = { AST_CLI_DEFINE(handle_cli_dialplan_remove_ignorepat, "Remove ignore pattern from context"), AST_CLI_DEFINE(handle_cli_dialplan_add_include, "Include context in other context"), AST_CLI_DEFINE(handle_cli_dialplan_remove_include, "Remove a specified include from context"), - AST_CLI_DEFINE(handle_cli_dialplan_reload, "Reload extensions and *only* extensions"), - AST_CLI_DEFINE(handle_cli_dialplan_save, "Save current dialplan into a file") + AST_CLI_DEFINE(handle_cli_dialplan_reload, "Reload extensions and *only* extensions") }; static struct ast_cli_entry cli_dialplan_save = - AST_CLI_DEFINE(handle_cli_dialplan_save, "Save dialplan"); + AST_CLI_DEFINE(handle_cli_dialplan_save, "Save current dialplan into a file"); #define AMI_EXTENSION_ADD "DialplanExtensionAdd" #define AMI_EXTENSION_REMOVE "DialplanExtensionRemove"