Hopefully last ast_strlen_zero fix in cli.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3105 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich 2004-05-28 19:23:30 +00:00
parent cc698e15cf
commit fa9a8d158a
1 changed files with 1 additions and 1 deletions

2
cli.c
View File

@ -997,7 +997,7 @@ static char *__ast_cli_generator(char *text, char *word, int state, int lock)
if (e->generator && !strncasecmp(matchstr, fullcmd, strlen(fullcmd))) {
/* We have a command in its entirity within us -- theoretically only one
command can have this occur */
fullcmd = e->generator(text, word, (strlen(word) ? (x - 1) : (x)), state);
fullcmd = e->generator(text, word, (!ast_strlen_zero(word) ? (x - 1) : (x)), state);
if (lock)
ast_mutex_unlock(&clilock);
free(dup);