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: https://origsvn.digium.com/svn/asterisk/trunk@287194 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2010-09-16 22:00:15 +00:00
parent f31d1d9cdc
commit dd1e62c095
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;