dect
/
asterisk
Archived
13
0
Fork 0

Fix the memory show allocations CLI command so that it doesn't spew out all

of the current memory allocations when you start Asterisk, when the command's
handler gets called for initialization.


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89052 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-11-06 19:51:37 +00:00
parent f258e58444
commit b8fd607d04
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli
"Usage: memory show allocations [<file>]\n"
" Dumps a list of all segments of allocated memory, optionally\n"
" limited to those from a specific file\n";
break;
return NULL;
case CLI_GENERATE:
return NULL;
}