Make "show http" CLI command follow new guidelines - now "http show status"

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17828 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson
2006-04-06 14:43:06 +00:00
parent 08dfc15553
commit 7fb5de23d9

4
http.c
View File

@@ -659,11 +659,11 @@ int ast_http_reload(void)
}
static char show_http_help[] =
"Usage: show http\n"
"Usage: http show status\n"
" Shows status of internal HTTP engine\n";
static struct ast_cli_entry http_cli[] = {
{ { "show", "http", NULL }, handle_show_http,
{ { "http", "show", "status", NULL }, handle_show_http,
"Display HTTP server status", show_http_help },
};