Fix the output for this channel help CLI command

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@85800 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Philippe Sultan
2007-10-16 10:46:13 +00:00
parent d63883be92
commit ab36dd5843

View File

@@ -235,7 +235,7 @@ static struct ast_rtp_protocol gtalk_rtp = {
get_codec: gtalk_get_codec,
};
static char debug_usage[] =
static char show_channels_usage[] =
"Usage: gtalk show channels\n"
" Shows current state of the Gtalk channels.\n";
@@ -245,8 +245,8 @@ static char reload_usage[] =
static struct ast_cli_entry gtalk_cli[] = {
{{ "gtalk", "reload", NULL}, gtalk_do_reload, "Enable Jabber debugging", reload_usage },
{{ "gtalk", "show", "channels", NULL}, gtalk_show_channels, "Show GoogleTalk Channels", debug_usage },
{{ "gtalk", "reload", NULL}, gtalk_do_reload, "Reload GoogleTalk configuration", reload_usage },
{{ "gtalk", "show", "channels", NULL}, gtalk_show_channels, "Show GoogleTalk channels", show_channels_usage },
};