[Asterisk-cvs] asterisk channel.c,1.73.2.4,1.73.2.5
citats at lists.digium.com
citats at lists.digium.com
Fri Feb 27 04:15:38 CST 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv12351
Modified Files:
Tag: v1-0_stable
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.73.2.4
retrieving revision 1.73.2.5
diff -u -d -r1.73.2.4 -r1.73.2.5
--- channel.c 27 Feb 2004 06:16:07 -0000 1.73.2.4
+++ channel.c 27 Feb 2004 09:04:57 -0000 1.73.2.5
@@ -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