aboutsummaryrefslogtreecommitdiffstats
path: root/cli.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-15 09:07:00 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-15 09:07:00 +0000
commit931e9ecf85db086abefa1b4fa3a0470daf6922be (patch)
treec04749f95fd7fe013ffab027eb3abb97e9b6b19b /cli.c
parentf83fd5ed6674110967ae28e7de2e5004df294684 (diff)
Fix 'show channel<tab>' completion, where show channel would be
autocompleted instead of displaying channel and channels. Also update comment to reflect that items in the list should have longest matches first. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2181 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'cli.c')
-rwxr-xr-xcli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli.c b/cli.c
index 8bc747bd5..b856850be 100755
--- a/cli.c
+++ b/cli.c
@@ -551,7 +551,7 @@ static char *complete_fn(char *line, char *word, int pos, int state)
static int handle_help(int fd, int argc, char *argv[]);
static struct ast_cli_entry builtins[] = {
- /* Keep alphabetized */
+ /* Keep alphabetized, with longer matches first (example: abcd before abc */
{ { "_command", "complete", NULL }, handle_commandcomplete, "Command complete", commandcomplete_help },
{ { "_command", "nummatches", NULL }, handle_commandnummatches, "Returns number of command matches", commandnummatches_help },
{ { "_command", "matchesarray", NULL }, handle_commandmatchesarray, "Returns command matches array", commandmatchesarray_help },
@@ -561,8 +561,8 @@ static struct ast_cli_entry builtins[] = {
{ { "no", "debug", "channel", NULL }, handle_nodebugchan, "Disable debugging on a channel", nodebugchan_help, complete_ch },
{ { "reload", NULL }, handle_reload, "Reload configuration", reload_help },
{ { "set", "verbose", NULL }, handle_set_verbose, "Set level of verboseness", set_verbose_help },
- { { "show", "channel", NULL }, handle_showchan, "Display information on a specific channel", showchan_help, complete_ch },
{ { "show", "channels", NULL }, handle_chanlist, "Display information on channels", chanlist_help },
+ { { "show", "channel", NULL }, handle_showchan, "Display information on a specific channel", showchan_help, complete_ch },
{ { "show", "modules", NULL }, handle_modlist, "List modules and info", modlist_help },
{ { "show", "uptime", NULL }, handle_showuptime, "Show uptime information", modlist_help },
{ { "show", "version", NULL }, handle_version, "Display version info", version_help },