[asterisk-commits] kpfleming: branch 1.4 r72205 - /branches/1.4/channels/chan_zap.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jun 27 14:13:22 CDT 2007


Author: kpfleming
Date: Wed Jun 27 14:13:21 2007
New Revision: 72205

URL: http://svn.digium.com/view/asterisk?view=rev&rev=72205
Log:
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

Modified:
    branches/1.4/channels/chan_zap.c

Modified: branches/1.4/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_zap.c?view=diff&rev=72205&r1=72204&r2=72205
==============================================================================
--- branches/1.4/channels/chan_zap.c (original)
+++ branches/1.4/channels/chan_zap.c Wed Jun 27 14:13:21 2007
@@ -511,7 +511,7 @@
 	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 */




More information about the asterisk-commits mailing list