aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-26 23:06:18 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-26 23:06:18 +0000
commitd8c9de8daa87ba1f7c636a7512c07343fdac6e66 (patch)
tree23cea7a0ce4e0dde7c8c1d1a0d87e98bdc99e0ed /apps
parent975bedef245fa60ca325251090eb5232cb4ee746 (diff)
Fix a really stupid mistake
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@125591 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 ea89c060a..5bdf72fb9 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -5485,7 +5485,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);