aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-27 19:13:21 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-27 19:13:21 +0000
commitffde94e3939164e7d39e2c74f33ef0357bd47b3e (patch)
tree5e39bbadcf25dc7c1bac9a994225f55b8969e1d6 /channels
parent88c71d1252dc48bc8503661e27efee623baa8f32 (diff)
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/branches/1.4@72205 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 756fff038..a69697cbc 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -511,7 +511,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 */