From: Kevin P. Fleming Date: Wed, 27 Jun 2007 19:13:54 +0000 (+0000) Subject: Merged revisions 72205 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2235 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86fcb89338f16143cbe1312a2924f969ae804f89;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/trunk@72207 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 08ff957b79..083e05335e 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 */