dect
/
asterisk
Archived
13
0
Fork 0

fix some breakage from the CLI command changes

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43372 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-09-20 21:14:02 +00:00
parent 15d25d7cdf
commit 4f97eb1b1a
1 changed files with 2 additions and 2 deletions

View File

@ -417,11 +417,11 @@ static struct ast_cli_entry cli_show_memory_summary_deprecated = {
static struct ast_cli_entry cli_memory[] = {
{ { "memory", "show", "allocations", NULL },
handle_show_memory, "Display outstanding memory allocations",
show_memory_help, NULL, &cli_show_memory_allocations },
show_memory_help, NULL, &cli_show_memory_allocations_deprecated },
{ { "memory", "show", "summary", NULL },
handle_show_memory_summary, "Summarize outstanding memory allocations",
show_memory_summary_help, NULL, &cli_show_memory_summary },
show_memory_summary_help, NULL, &cli_show_memory_summary_deprecated },
};
void __ast_mm_init(void)