summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-09-21 21:17:39 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-09-21 21:17:39 +0000
commit2b55678e1f559bd1ecd81ba30106b253f3acd1fc (patch)
treef363c53cb57dcc4f7096ee473679d70a1bf1dae7 /main/channel.c
parent8eece0894350afeeabac14b1c94ebcdaf038e301 (diff)
Remove deprecated CLI apps from the core
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43449 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/main/channel.c b/main/channel.c
index 3df9191f8..39c8f8d18 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -295,24 +295,14 @@ static char show_channeltype_usage[] =
"Usage: channeltype show <name>\n"
" Show details about the specified channel type, <name>.\n";
-static struct ast_cli_entry cli_show_channeltypes_deprecated = {
- { "show", "channeltypes", NULL },
- show_channeltypes, NULL,
- NULL };
-
-static struct ast_cli_entry cli_show_channeltype_deprecated = {
- { "show", "channeltype", NULL },
- show_channeltype, NULL,
- NULL, complete_channeltypes };
-
static struct ast_cli_entry cli_channel[] = {
{ { "channeltype", "list", NULL },
show_channeltypes, "List available channel types",
- show_channeltypes_usage, NULL, &cli_show_channeltypes_deprecated },
+ show_channeltypes_usage },
{ { "channeltype", "show", NULL },
show_channeltype, "Give more details on that channel type",
- show_channeltype_usage, complete_channeltypes, &cli_show_channeltype_deprecated },
+ show_channeltype_usage, complete_channeltypes },
};
/*! \brief Checks to see if a channel is needing hang up */