summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBJ Weschke <bweschke@btwtech.com>2006-08-11 17:49:35 +0000
committerBJ Weschke <bweschke@btwtech.com>2006-08-11 17:49:35 +0000
commit2ec3a672e96bc6d101b03a56802927a5b4363c53 (patch)
tree6b868afdd91cf8a26b8601dae136e7370dd75e7e /apps
parentc5e5efb237feac3a6073d9dfd493eef057c4530b (diff)
Increase the size of the variable space for writing/reading persistent queue member data to allow for larger queues of members. (Matthew Roth #7703)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39516 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 774c8ca17..3e2f15340 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -237,7 +237,7 @@ static char *app_ql_descrip =
/*! \brief Persistent Members astdb family */
static const char *pm_family = "/Queue/PersistentMembers";
/* The maximum length of each persistent member queue database entry */
-#define PM_MAX_LEN 2048
+#define PM_MAX_LEN 8192
/*! \brief queues.conf [general] option */
static int queue_persistent_members = 0;