summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-11-02 23:55:59 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-11-02 23:55:59 +0000
commit79f75ec09a7fbe693481d15bd9a6ed63d0b45669 (patch)
tree135a675ee7f15a60e635a3fe3b6ff1194de11a26 /res
parent10875731ecfbe329b31be706d30a81dd579c3b56 (diff)
Merged revisions 47053 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r47053 | tilghman | 2006-11-02 17:49:13 -0600 (Thu, 02 Nov 2006) | 2 lines More changes making the CLI more consistent with "category verb arguments" (continuation of issue 8236) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47054 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 57a034b33..cd4cd54ed 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2100,7 +2100,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 },
diff --git a/res/res_jabber.c b/res/res_jabber.c
index 0a7f5fb92..16cc66746 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 },