summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRodrigo Ramírez Norambuena <a@rodrigoramirez.com>2016-01-23 15:34:11 -0300
committerRodrigo Ramírez Norambuena <a@rodrigoramirez.com>2016-01-23 15:34:11 -0300
commit8c664da0ffbd7c26120374544ed82d689dfadc6a (patch)
tree68facf56c9f1a5a45bc4e7cf63a20c2553999efb /apps
parent9a67730d79bb6bd1fe36c434d0990ae1394b84f5 (diff)
app_queue: fix some tab format
Change-Id: I2734392b131f1fb0949515d538f83f30fbc15d8c
Diffstat (limited to 'apps')
-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 c4025d245..b064a184a 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1333,9 +1333,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 {
@@ -1525,7 +1525,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 */
@@ -1548,7 +1548,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. */
@@ -1685,7 +1685,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 */