From 11ac1f7e11fb2bafc7379ca67e5a334a6f947e96 Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Wed, 22 Apr 2009 21:15:55 +0000 Subject: 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 --- include/asterisk/channel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/asterisk/channel.h') diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h index f4038a2a8..cdf34793e 100644 --- a/include/asterisk/channel.h +++ b/include/asterisk/channel.h @@ -2015,7 +2015,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; }; -- cgit v1.2.3