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
This commit is contained in:
Kevin P. Fleming
2006-04-11 22:07:52 +00:00
parent 677347edab
commit fb4d5fb6a6
+1 -1
View File
@@ -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) );