Set the default for "autofill" and "shared_lastcall" to "yes" in queues.conf.

Review: https://reviewboard.asterisk.org/r/922/


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@287193 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2010-09-16 21:57:51 +00:00
parent f5bc72d34f
commit daf14509c5
3 changed files with 12 additions and 10 deletions

View File

@@ -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;