[svn-commits] irroot: branch irroot/asterisk-trunk-quack-queue r343444 - /team/irroot/aster...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Nov 4 08:12:43 CDT 2011


Author: irroot
Date: Fri Nov  4 08:12:40 2011
New Revision: 343444

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=343444
Log:
Small error 

Modified:
    team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c

Modified: team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c?view=diff&rev=343444&r1=343443&r2=343444
==============================================================================
--- team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c (original)
+++ team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c Fri Nov  4 08:12:40 2011
@@ -1084,8 +1084,8 @@
 	time_t expire;                         /*!< When this entry should expire (time out of queue) */
 	int cancel_answered_elsewhere;	       /*!< Whether we should force the CAE flag on this call (C) option*/
 	struct ast_channel *chan;              /*!< Our channel */
+	struct rule_list *rules;               /*!< Pointer holding the ref for the queue penalty rules */
 	struct penalty_rule *pr;               /*!< Pointer to the next penalty rule to implement */
-	struct rule_list *rules;               /*!< Pointer holding the ref for the queue penalty rules */
 	AST_LIST_ENTRY(queue_ent) next;        /*!< The next queue entry */
 };
 
@@ -3044,7 +3044,6 @@
 	AST_LIST_LOCK(q->head);
 	AST_LIST_TRAVERSE_SAFE_BEGIN(q->head, cur, next) {
 		if (cur == qe) {
-			char posstr[20];
 			ao2_lock(q);
 			q->count--;
 




More information about the svn-commits mailing list