summaryrefslogtreecommitdiff
path: root/main/cli.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-11-28 15:48:00 +0000
committerJoshua Colp <jcolp@digium.com>2007-11-28 15:48:00 +0000
commita6ddf3c7b06998a30a05b7fbafa5a5dd52730eac (patch)
treedb8a18bc16a1d4830c21e6c28ace167f196dbeab /main/cli.c
parent6aad89b97d2a36d18e6cc3a6f6ca8ace55e6c415 (diff)
Hide CLI commands starting with _ from tab completion as was done previously.
(closes issue #11395) Reported by: eliel Patches: cli.c.patch uploaded by eliel (license 64) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89982 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/cli.c b/main/cli.c
index d80aaae20..c71c49e6e 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -1728,6 +1728,9 @@ static char *__ast_cli_generator(const char *text, const char *word, int state,
/* XXX repeated code */
int src = 0, dst = 0, n = 0;
+ if (e->command[0] == '_')
+ continue;
+
/*
* Try to match words, up to and excluding the last word, which
* is either a blank or something that we want to extend.