aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-15 23:52:48 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-15 23:52:48 +0000
commit57f6f3558017c7d769d8b7df64e1737ffff25734 (patch)
tree3112a8c2bb9f1efbfedd518a6ada23080d00dcdf /main
parent00bbd2402c4045d7b4e381e571baa2ce3d32e230 (diff)
Refashion dump command to match common syntax and update the resulting appdocs TeX file
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58946 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 0bc6ac584..bd857f7a3 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -3208,8 +3208,8 @@ static int handle_show_application(int fd, int argc, char *argv[])
#ifdef AST_DEVMODE
static char core_dumpappdocs_help[] =
-"Usage: core dumpappdocs [application]\n"
-" Dump Application documentation to \\tmp\\ast_appdocs.tex.\n";
+"Usage: core dump appdocs [application]\n"
+" Dump Application documentation to /tmp/ast_appdocs.tex.\n";
static int handle_core_dumpappdocs(int fd, int argc, char *argv[])
{
@@ -3843,8 +3843,8 @@ static struct ast_cli_entry pbx_cli[] = {
show_application_help, complete_show_application, &cli_show_application_deprecated },
#ifdef AST_DEVMODE
- { { "core", "dumpappdocs", NULL },
- handle_core_dumpappdocs, "Dump App docs in LaTeX format",
+ { { "core", "dump", "appdocs", NULL },
+ handle_core_dumpappdocs, "Dump application documentation in LaTeX format",
core_dumpappdocs_help, NULL },
#endif