[asterisk-commits] irroot: branch irroot/app_queue_skill r322173 - /team/irroot/app_queue_skill/...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Jun 6 23:01:00 CDT 2011


Author: irroot
Date: Mon Jun  6 23:00:56 2011
New Revision: 322173

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=322173
Log:
Some Formatting Fixes

Modified:
    team/irroot/app_queue_skill/apps/app_queue.c

Modified: team/irroot/app_queue_skill/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/app_queue_skill/apps/app_queue.c?view=diff&rev=322173&r1=322172&r2=322173
==============================================================================
--- team/irroot/app_queue_skill/apps/app_queue.c (original)
+++ team/irroot/app_queue_skill/apps/app_queue.c Mon Jun  6 23:00:56 2011
@@ -1004,7 +1004,7 @@
 
 struct queue_ent {
 	struct call_queue *parent;             /*!< What queue is our parent */
-	struct virtual_queue *vqueue;       /*!< Virtual queue in case there is skills routing */
+	struct virtual_queue *vqueue;          /*!< Virtual queue in case there is skills routing */
 	char moh[80];                          /*!< Name of musiconhold to be used */
 	char announce[PATH_MAX];               /*!< Announcement to play for member when call is answered */
 	char context[AST_MAX_CONTEXT];         /*!< Context when user exits queue */
@@ -1024,11 +1024,11 @@
 	int min_penalty;                       /*!< Limit the members that can take this call to this penalty or higher */
 	int linpos;                            /*!< If using linear strategy, what position are we at? */
 	int linwrapped;                        /*!< Is the linpos wrapped? */
-	char skill_ruleset[80];             /*!< Name of the skill ruleset */
+	char skill_ruleset[80];                /*!< Name of the skill ruleset */
 	time_t skills_next_check;              /*!< Next check of skills rules. */
 	time_t start;                          /*!< When we started holding */
 	time_t expire;                         /*!< When this entry should expire (time out of queue) */
-	struct ao2_container *mem_selection;/*!< Members who match skill rules. */
+	struct ao2_container *mem_selection;   /*!< Members who match skill rules. */
 	int cancel_answered_elsewhere;	       /*!< Whether we should force the CAE flag on this call (C) option*/
 	struct ast_channel *chan;              /*!< Our channel */
 	AST_LIST_HEAD_NOLOCK(,penalty_rule) qe_rules; /*!< Local copy of the queue's penalty rules */
@@ -1067,7 +1067,7 @@
 	SKILL_RULE_OPERATOR_OR              /*!<  op1 | op2  */
 };
 
-#define SKILL_RULE_OPERATORS_CHARS "/*-+!=><&|"
+#define SKILL_RULE_OPERATORS_CHARS "*-/+!=><&|"
 static enum skill_rule_operator_type skill_rule_operator_type_str[] = {
 	['/'] = SKILL_RULE_OPERATOR_DIVISION,
 	['*'] = SKILL_RULE_OPERATOR_MULTIPLICATION,




More information about the asterisk-commits mailing list