summaryrefslogtreecommitdiff
path: root/main/cli.c
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2009-04-22 21:15:55 +0000
committerJeff Peeler <jpeeler@digium.com>2009-04-22 21:15:55 +0000
commit11ac1f7e11fb2bafc7379ca67e5a334a6f947e96 (patch)
tree5a632762f1665dad4db9749279a8a216d0a9dd90 /main/cli.c
parent3fb648d8fadc461ba1a77ea681d431eda2d50e30 (diff)
Fix building of chan_h323 with gcc-3.3
There seems to be a bug with old versions of g++ that doesn't allow a structure member to use the name list. Rename list member to group_list in ast_group_info and change the few places it is used. (closes issue #14790) Reported by: stuarth git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190057 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/cli.c b/main/cli.c
index d6ee56adf..1d3843183 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -1439,7 +1439,7 @@ static char *group_show_channels(struct ast_cli_entry *e, int cmd, struct ast_cl
ast_cli(a->fd, FORMAT_STRING, gi->chan->name, gi->group, (ast_strlen_zero(gi->category) ? "(default)" : gi->category));
numchans++;
}
- gi = AST_LIST_NEXT(gi, list);
+ gi = AST_LIST_NEXT(gi, group_list);
}
ast_app_group_list_unlock();