aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-26 23:06:47 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-26 23:06:47 +0000
commit960f298c265de6ad3b30c06f736430d58aaa33b2 (patch)
tree3ac23b20ab973e0c9c4d6ba6a7c642ed0460c78e /apps
parent4fdf8edbaa552ca6c164c37fb124e22f0e33da08 (diff)
Merged revisions 125591 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r125591 | mmichelson | 2008-06-26 18:06:18 -0500 (Thu, 26 Jun 2008) | 3 lines Fix a really stupid mistake ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@125592 f38db490-d61c-443f-a65b-d21fe96a405b
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 d4294ebec..535b584d3 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -5410,7 +5410,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
while ((mem = ao2_iterator_next(&mem_iter))) {
ast_str_set(&out, 0, " %s", mem->membername);
if (strcasecmp(mem->membername, mem->interface)) {
- ast_build_string(&max, &max_left, " (%s)", mem->interface);
+ ast_str_append(&out, 0, " (%s)", mem->interface);
}
if (mem->penalty)
ast_str_append(&out, 0, " with penalty %d", mem->penalty);