From: Tilghman Lesher Date: Sat, 19 Nov 2011 15:08:03 +0000 (+0000) Subject: Update the documentation to better clarify how the existing commands work. X-Git-Tag: 1.8.9.0-rc1~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfbd53182f8a60d12674de9b810a37b2e9780a48;p=thirdparty%2Fasterisk.git Update the documentation to better clarify how the existing commands work. Review: https://reviewboard.asterisk.org/r/1593/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@345682 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/db.c b/main/db.c index a0efc8c056..ab2ac30d4f 100644 --- a/main/db.c +++ b/main/db.c @@ -430,8 +430,10 @@ static char *handle_cli_database_deltree(struct ast_cli_entry *e, int cmd, struc e->command = "database deltree"; e->usage = "Usage: database deltree [keytree]\n" + " OR: database deltree [/keytree]\n" " Deletes a family or specific keytree within a family\n" - " in the Asterisk database.\n"; + " in the Asterisk database. The two arguments may be\n" + " separated by either a space or a slash.\n"; return NULL; case CLI_GENERATE: return NULL; @@ -476,8 +478,10 @@ static char *handle_cli_database_show(struct ast_cli_entry *e, int cmd, struct a e->command = "database show"; e->usage = "Usage: database show [family [keytree]]\n" + " OR: database show [family[/keytree]]\n" " Shows Asterisk database contents, optionally restricted\n" - " to a given family, or family and keytree.\n"; + " to a given family, or family and keytree. The two arguments\n" + " may be separated either by a space or by a slash.\n"; return NULL; case CLI_GENERATE: return NULL;