[Asterisk-cvs] asterisk/apps app_chanisavail.c,1.19,1.20

kpfleming kpfleming
Sun Sep 25 16:40:07 CDT 2005


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

Modified Files:
	app_chanisavail.c 
Log Message:
correct sense of logic test (issue #5259)


Index: app_chanisavail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_chanisavail.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- app_chanisavail.c	14 Sep 2005 20:46:49 -0000	1.19
+++ app_chanisavail.c	25 Sep 2005 20:37:05 -0000	1.20
@@ -135,7 +135,7 @@
 	if (res < 1) {
 		pbx_builtin_setvar_helper(chan, "AVAILCHAN", "");
 		pbx_builtin_setvar_helper(chan, "AVAILORIGCHAN", "");
-		if (!ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101))
+		if (ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101))
 			return -1;
 	}
 




More information about the svn-commits mailing list