[Asterisk-cvs] asterisk channel.c,1.78,1.79

citats at lists.digium.com citats at lists.digium.com
Fri Feb 27 04:15:23 CST 2004


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv12335

Modified Files:
	channel.c 
Log Message:
Change text in ast_get_group to explain that max group is 31 (bug #1014)


Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- channel.c	27 Feb 2004 06:15:49 -0000	1.78
+++ channel.c	27 Feb 2004 09:04:42 -0000	1.79
@@ -2522,7 +2522,7 @@
 		}
 		for (x=start;x<=finish;x++) {
 			if ((x > 31) || (x < 0)) {
-				ast_log(LOG_WARNING, "Ignoring invalid group %d\n", x);
+				ast_log(LOG_WARNING, "Ignoring invalid group %d (maximum group is 31)\n", x);
 			} else
 				group |= (1 << x);
 		}




More information about the svn-commits mailing list