From 9ca6486a2f572bfd1df866e3b19edbd8a7180b1a Mon Sep 17 00:00:00 2001 From: kpfleming Date: Wed, 27 Jun 2007 19:13:54 +0000 Subject: [PATCH] Merged revisions 72205 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r72205 | kpfleming | 2007-06-27 14:13:21 -0500 (Wed, 27 Jun 2007) | 2 lines use the proper type for storing group number bits so that if someone specifies 'group=42' it will actually work instead of being silently ignored ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@72207 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_zap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 08ff957b7..083e05335 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -584,7 +584,7 @@ static struct zt_pvt { char callwait_name[AST_MAX_EXTENSION]; char rdnis[AST_MAX_EXTENSION]; char dnid[AST_MAX_EXTENSION]; - unsigned int group; + ast_group_t group; int law; int confno; /*!< Our conference */ int confusers; /*!< Who is using our conference */