aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 23:49:13 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 23:49:13 +0000
commit37c4cd900630f4bdf2a584030a8527a9c89dd7b8 (patch)
tree9335be1d860822d8f2f9c203b8afd5c9ddf540a6 /res
parentc771976500a03e9be6ca67f3c3ccc31f6c32f232 (diff)
More changes making the CLI more consistent with "category verb arguments" (continuation of issue 8236)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47053 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
-rw-r--r--res/res_jabber.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 5a9a40c17..ecac92282 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2114,7 +2114,7 @@ static struct ast_cli_entry cli_agi[] = {
agi_do_debug, "Enable AGI debugging",
debug_usage },
- { { "agi", "nodebug", NULL },
+ { { "agi", "debug", "off", NULL },
agi_no_debug, "Disable AGI debugging",
no_debug_usage, NULL, &cli_agi_no_debug_deprecated },
diff --git a/res/res_jabber.c b/res/res_jabber.c
index a7c148a63..583c44eeb 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -103,7 +103,7 @@ static char debug_usage[] =
" Enables dumping of Jabber packets for debugging purposes.\n";
static char no_debug_usage[] =
-"Usage: jabber no debug\n"
+"Usage: jabber debug off\n"
" Disables dumping of Jabber packets for debugging purposes.\n";
static char reload_usage[] =
@@ -128,7 +128,7 @@ static struct ast_cli_entry aji_cli[] = {
aji_show_clients, "Show state of clients and components",
debug_usage },
- { { "jabber", "no", "debug", NULL},
+ { { "jabber", "debug", "off", NULL},
aji_no_debug, "Disable Jabber debug",
no_debug_usage },