dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
kpfleming 2007-06-27 19:13:54 +00:00
parent 148c7d5cca
commit 9ca6486a2f
1 changed files with 1 additions and 1 deletions

View File

@ -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 */