Skip to content
Snippets Groups Projects
Commit fcf76b36 authored by James Golovich's avatar James Golovich
Browse files

Hopefully last fix to remote cli completion

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2669 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 63943883
Branches
Tags
No related merge requests found
...@@ -1102,6 +1102,7 @@ static char *cli_complete(EditLine *el, int ch) ...@@ -1102,6 +1102,7 @@ static char *cli_complete(EditLine *el, int ch)
snprintf(buf, sizeof(buf),"_COMMAND MATCHESARRAY \"%s\" \"%s\"", lf->buffer, ptr); snprintf(buf, sizeof(buf),"_COMMAND MATCHESARRAY \"%s\" \"%s\"", lf->buffer, ptr);
fdprint(ast_consock, buf); fdprint(ast_consock, buf);
res = 0; res = 0;
mbuf[0] = '\0';
while (!strstr(mbuf, AST_CLI_COMPLETE_EOF) && res != -1) { while (!strstr(mbuf, AST_CLI_COMPLETE_EOF) && res != -1) {
if (mlen + 1024 > maxmbuf) { if (mlen + 1024 > maxmbuf) {
/* Every step increment buffer 1024 bytes */ /* Every step increment buffer 1024 bytes */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment