aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 21:14:02 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 21:14:02 +0000
commit4f97eb1b1a61b47e86684b7a1882b96ef466c080 (patch)
tree3d64346d53afaace21113f7baa7f2eb052ac0025 /main/astmm.c
parent15d25d7cdf25066daa7216960a24585935c30df2 (diff)
fix some breakage from the CLI command changes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43372 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 990fe26f0..45e9006b7 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -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)