aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-21 14:06:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-21 14:06:37 +0000
commit75cee17a40b5dbfd13a5f943ecfab4448fc549e5 (patch)
tree666a78c643f7e97ff40bb7da14438f243edaab93 /apps/app_meetme.c
parentdc6a86eb64d43d0c63ac1336be53f655206cb607 (diff)
remove a CLI command that has been marked deprecated since before Asterisk 1.0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29164 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index c91791cd4..81b1cabbe 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -541,20 +541,6 @@ static struct ast_conference *build_conf(char *confno, char *pin, char *pinadmin
return cnf;
}
-static int confs_show(int fd, int argc, char **argv)
-{
- ast_cli(fd, "Deprecated! Please use 'meetme' instead.\n");
-
- return RESULT_SUCCESS;
-}
-
-static char show_confs_usage[] =
-"Deprecated! Please use 'meetme' instead.\n";
-
-static struct ast_cli_entry cli_show_confs = {
- { "show", "conferences", NULL }, confs_show,
- "Show status of conferences", show_confs_usage, NULL };
-
static int conf_cmd(int fd, int argc, char **argv) {
/* Process the command */
struct ast_conference *cnf;
@@ -2392,8 +2378,7 @@ static int unload_module(void *mod)
{
int res;
- res = ast_cli_unregister(&cli_show_confs);
- res |= ast_cli_unregister(&cli_conf);
+ res = ast_cli_unregister(&cli_conf);
res |= ast_unregister_application(app3);
res |= ast_unregister_application(app2);
res |= ast_unregister_application(app);
@@ -2409,8 +2394,7 @@ static int load_module(void *mod)
load_config();
- res = ast_cli_register(&cli_show_confs);
- res |= ast_cli_register(&cli_conf);
+ res = ast_cli_register(&cli_conf);
res |= ast_register_application(app3, admin_exec, synopsis3, descrip3);
res |= ast_register_application(app2, count_exec, synopsis2, descrip2);
res |= ast_register_application(app, conf_exec, synopsis, descrip);