aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-16 21:57:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-16 21:57:51 +0000
commit4e25f678a71ca88f0cda3db833cfc25ea5e66116 (patch)
tree37916b2e14c192632adecd427d9d4a2933231eb9 /apps
parent91cee8a56dd7e51ae0ce730ba4571bfdb9a166c7 (diff)
Set the default for "autofill" and "shared_lastcall" to "yes" in queues.conf.
Review: https://reviewboard.asterisk.org/r/922/ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@287193 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 57cbc0b63..07161d558 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -760,13 +760,13 @@ static int queue_persistent_members = 0;
static int use_weight = 0;
/*! \brief queues.conf [general] option */
-static int autofill_default = 0;
+static int autofill_default = 1;
/*! \brief queues.conf [general] option */
static int montype_default = 0;
/*! \brief queues.conf [general] option */
-static int shared_lastcall = 0;
+static int shared_lastcall = 1;
/*! \brief Subscription to device state change events */
static struct ast_event_sub *device_state_sub;