aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 06:14:05 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 06:14:05 +0000
commitca106ed3015f7522f597a161c8741ac4eff78983 (patch)
tree92fb191131244dd30f6a937a182b52f7bb419662 /apps/app_queue.c
parentd8fd7db2ce80b8d473b62a9d083767ff197c9c8a (diff)
We need to persist the member name also
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43322 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 02394e053..ff00e4463 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2712,8 +2712,8 @@ static void dump_queue_members(struct call_queue *pm_queue)
if (!cur_member->dynamic)
continue;
- res = snprintf(value + value_len, sizeof(value) - value_len, "%s;%d;%d%s",
- cur_member->interface, cur_member->penalty, cur_member->paused,
+ res = snprintf(value + value_len, sizeof(value) - value_len, "%s;%d;%d;%s%s",
+ cur_member->interface, cur_member->penalty, cur_member->paused, cur_member->membername,
cur_member->next ? "|" : "");
if (res != strlen(value + value_len)) {
ast_log(LOG_WARNING, "Could not create persistent member string, out of space\n");