mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
Fix incorrect variable (bug #4243)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5653 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -459,7 +459,7 @@ static struct ast_channel *features_new(struct feature_pvt *p, int state, int in
|
|||||||
for (y=0;y<3;y++) {
|
for (y=0;y<3;y++) {
|
||||||
if (y == index)
|
if (y == index)
|
||||||
continue;
|
continue;
|
||||||
if (p->subs[x].owner && !strcasecmp(p->subs[x].owner->name, tmp->name))
|
if (p->subs[y].owner && !strcasecmp(p->subs[y].owner->name, tmp->name))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (y >= 3)
|
if (y >= 3)
|
||||||
|
|||||||
Reference in New Issue
Block a user