[Asterisk-cvs] asterisk/channels chan_features.c,1.10,1.11

markster at lists.digium.com markster at lists.digium.com
Sat May 14 19:39:52 CDT 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv32332/channels

Modified Files:
	chan_features.c 
Log Message:
Fix incorrect variable (bug #4243)


Index: chan_features.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_features.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- chan_features.c	7 May 2005 19:51:39 -0000	1.10
+++ chan_features.c	14 May 2005 23:45:22 -0000	1.11
@@ -459,7 +459,7 @@
 		for (y=0;y<3;y++) {
 			if (y == index)
 				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;
 		}
 		if (y >= 3)




More information about the svn-commits mailing list