summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-02-03 06:19:47 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-02-03 06:19:48 -0600
commitef293354dc48f23a6cc2d8449fbf9be1a8db8938 (patch)
tree593e7af73bbbfa6104231532ad99af9a3b72d71e /apps/app_queue.c
parent90e143929699bb39651ba1f110e58b577356b0fd (diff)
parent8c664da0ffbd7c26120374544ed82d689dfadc6a (diff)
Merge "app_queue: fix some tab format"
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index fd793a731..ac105e4d8 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1332,9 +1332,9 @@ enum {
};
enum {
- QUEUE_AUTOPAUSE_OFF = 0,
- QUEUE_AUTOPAUSE_ON,
- QUEUE_AUTOPAUSE_ALL
+ QUEUE_AUTOPAUSE_OFF = 0,
+ QUEUE_AUTOPAUSE_ON,
+ QUEUE_AUTOPAUSE_ALL
};
enum queue_reload_mask {
@@ -1524,7 +1524,7 @@ struct queue_ent {
int linwrapped; /*!< Is the linpos wrapped? */
time_t start; /*!< When we started holding */
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*/
+ 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 */
struct penalty_rule *pr; /*!< Pointer to the next penalty rule to implement */
@@ -1547,7 +1547,7 @@ struct member {
int queuepos; /*!< In what order (pertains to certain strategies) should this member be called? */
time_t lastcall; /*!< When last successful call was hungup */
unsigned int in_call:1; /*!< True if member is still in call. (so lastcall is not actual) */
- struct call_queue *lastqueue; /*!< Last queue we received a call */
+ struct call_queue *lastqueue; /*!< Last queue we received a call */
unsigned int dead:1; /*!< Used to detect members deleted in realtime */
unsigned int delme:1; /*!< Flag to delete entry on reload */
unsigned int call_pending:1; /*!< TRUE if the Q is attempting to place a call to the member. */
@@ -1684,7 +1684,7 @@ struct call_queue {
int memberdelay; /*!< Seconds to delay connecting member to caller */
int autofill; /*!< Ignore the head call status and ring an available agent */
- struct ao2_container *members; /*!< Head of the list of members */
+ struct ao2_container *members; /*!< Head of the list of members */
struct queue_ent *head; /*!< Head of the list of callers */
AST_LIST_ENTRY(call_queue) list; /*!< Next call queue */
AST_LIST_HEAD_NOLOCK(, penalty_rule) rules; /*!< The list of penalty rules to invoke */