[svn-commits] irroot: branch irroot/distrotech-customers r319000 - /team/irroot/distrotech-...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sat May 14 12:02:16 CDT 2011


Author: irroot
Date: Sat May 14 12:02:12 2011
New Revision: 319000

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=319000
Log:
I dont believe pickup should lookfor calls in "DOWN" state.


Modified:
    team/irroot/distrotech-customers/apps/app_directed_pickup.c

Modified: team/irroot/distrotech-customers/apps/app_directed_pickup.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/distrotech-customers/apps/app_directed_pickup.c?view=diff&rev=319000&r1=318999&r2=319000
==============================================================================
--- team/irroot/distrotech-customers/apps/app_directed_pickup.c (original)
+++ team/irroot/distrotech-customers/apps/app_directed_pickup.c Sat May 14 12:02:12 2011
@@ -103,8 +103,7 @@
 	if (!chan->pbx && !chan->masq &&
 		!ast_test_flag(chan, AST_FLAG_ZOMBIE) &&
 		(chan->_state == AST_STATE_RINGING ||
-		 chan->_state == AST_STATE_RING ||
-		 chan->_state == AST_STATE_DOWN)) {
+		 chan->_state == AST_STATE_RING)) {
 		return 1;
 	}
 	return 0;




More information about the svn-commits mailing list