aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-27 09:04:42 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-27 09:04:42 +0000
commit1572d47962e75f36cdcc4a1c75aff04cebdb4956 (patch)
treecd5259dc894f187d91d75ec0829ab97f1609768a /channel.c
parent7c3ee5cb6c3163abf8b782749ec970e7ce1dea08 (diff)
Change text in ast_get_group to explain that max group is 31 (bug #1014)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2270 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index e4a572af3..d00fc4dd9 100755
--- a/channel.c
+++ b/channel.c
@@ -2522,7 +2522,7 @@ unsigned int ast_get_group(char *s)
}
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);
}