aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-27 19:13:54 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-27 19:13:54 +0000
commit9ca6486a2f572bfd1df866e3b19edbd8a7180b1a (patch)
tree3d7e2870e0483222beb1656cd41083eee6ec862d /channels
parent148c7d5cca314d2fb002fc32f974ce3b678d52c6 (diff)
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
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
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 */