aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-16 22:00:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-16 22:00:15 +0000
commit4a414f76dc323c7f6c5e12f228854b45736962d6 (patch)
treebb903ce2855e5a5e8848f3bcabc26e936abaa72e /apps/app_queue.c
parentbc6ee47f723dbf9a2b3832449c4e1d49cb61cb0f (diff)
Merged revisions 287193 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r287193 | russell | 2010-09-16 16:57:51 -0500 (Thu, 16 Sep 2010) | 4 lines 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/trunk@287194 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_queue.c')
-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;