Merged revisions 86661 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r86661 | file | 2007-10-22 11:05:26 -0300 (Mon, 22 Oct 2007) | 6 lines

Fix tab completion for dundi show peer.
(closes issue #11041)
Reported by: jsmith
Patches:
      asterisk-dundicomplete.diff.txt uploaded by jamesgolovich (license 176)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@86662 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp 2007-10-22 14:07:14 +00:00
parent e4b75ab0e0
commit 9409a33900
1 changed files with 3 additions and 1 deletions

View File

@ -2377,8 +2377,10 @@ static char *complete_peer_helper(const char *line, const char *word, int pos, i
len = strlen(word);
AST_LIST_TRAVERSE(&peers, p, list) {
const char *s = dundi_eid_to_str(eid_str, sizeof(eid_str), &p->eid);
if (!strncasecmp(word, s, len) && ++which > state)
if (!strncasecmp(word, s, len) && ++which > state) {
ret = ast_strdup(s);
break;
}
}
AST_LIST_UNLOCK(&peers);
return ret;