[asterisk-commits] mmichelson: branch group/CCSS r217635 - /team/group/CCSS/main/ccss.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Sep 10 11:05:30 CDT 2009
Author: mmichelson
Date: Thu Sep 10 11:05:26 2009
New Revision: 217635
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=217635
Log:
Off by one on the priority.
With this commit, I was able to actually make a recall
to the phone. There's a lot of processing still to be
done during the recall, but the fact that I could
kick it off was neat.
Modified:
team/group/CCSS/main/ccss.c
Modified: team/group/CCSS/main/ccss.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/CCSS/main/ccss.c?view=diff&rev=217635&r1=217634&r2=217635
==============================================================================
--- team/group/CCSS/main/ccss.c (original)
+++ team/group/CCSS/main/ccss.c Thu Sep 10 11:05:26 2009
@@ -790,7 +790,7 @@
}
ast_copy_string(chan->exten, exten, sizeof(chan->exten));
ast_copy_string(chan->context, context, sizeof(chan->context));
- chan->priority = 0;
+ chan->priority = 1;
ast_pbx_start(chan);
return NULL;
}
More information about the asterisk-commits
mailing list