fix logic error; don't test for rtcache flag unless asked to (issue #6923)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19393 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Kevin P. Fleming 21 years ago
parent 677347edab
commit fb4d5fb6a6

@ -8502,7 +8502,7 @@ static char *complete_sip_peer(const char *word, int state, int flags2)
ASTOBJ_CONTAINER_TRAVERSE(&peerl, !result, do {
/* locking of the object is not required because only the name and flags are being compared */
if (!strncasecmp(word, iterator->name, wordlen) &&
ast_test_flag(&iterator->flags[1], flags2) &&
(!flags2 || ast_test_flag(&iterator->flags[1], flags2)) &&
++which > state)
result = ast_strdup(iterator->name);
} while(0) );

Loading…
Cancel
Save