From 04dbf0cfc67120d746408519f5f766343102bfcf Mon Sep 17 00:00:00 2001 From: file Date: Wed, 28 Nov 2007 15:48:00 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@89982 f38db490-d61c-443f-a65b-d21fe96a405b --- main/cli.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main') 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. -- cgit v1.2.3