aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-22 21:18:11 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-22 21:18:11 +0000
commit7e2983761819500ee035ffa77f7712816dc036e5 (patch)
tree6c108ea3d2b6111c0c192df7b3eb5e957dca554d /include
parentd112c591878fb1c50aa1dfd9c74fa0798491d7c9 (diff)
Merged revisions 190057 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r190057 | jpeeler | 2009-04-22 16:15:55 -0500 (Wed, 22 Apr 2009) | 9 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.1@190063 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index e4e8bfea7..8488380db 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -1748,7 +1748,7 @@ struct ast_group_info {
struct ast_channel *chan;
char *category;
char *group;
- AST_LIST_ENTRY(ast_group_info) list;
+ AST_LIST_ENTRY(ast_group_info) group_list;
};