aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_crypto.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-21 21:59:12 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-21 21:59:12 +0000
commit2a2a1439668c0ddf528efe04673d2ba15ae78ce0 (patch)
treef166bba69d92b06b74ab2323297f68cfcd7789fb /res/res_crypto.c
parent901e02171baea1df9d10e7562f9fe32f64354f1f (diff)
Lots more removal of deprecated things
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43452 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_crypto.c')
-rw-r--r--res/res_crypto.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/res/res_crypto.c b/res/res_crypto.c
index 586dd77cf..c12c11a51 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -561,24 +561,14 @@ static char init_keys_usage[] =
"Usage: keys init\n"
" Initializes private keys (by reading in pass code from the user)\n";
-static struct ast_cli_entry cli_show_keys_deprecated = {
- { "show", "keys", NULL },
- show_keys, NULL,
- NULL };
-
-static struct ast_cli_entry cli_init_keys_deprecated = {
- { "init", "keys", NULL },
- init_keys, NULL,
- NULL };
-
static struct ast_cli_entry cli_crypto[] = {
{ { "keys", "list", NULL },
show_keys, "Displays RSA key information",
- show_key_usage, NULL, &cli_show_keys_deprecated },
+ show_key_usage },
{ { "keys", "init", NULL },
init_keys, "Initialize RSA key passcodes",
- init_keys_usage, NULL, &cli_init_keys_deprecated },
+ init_keys_usage },
};
static int crypto_init(void)