dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
citats 2004-02-27 09:04:42 +00:00
parent 7c3ee5cb6c
commit 1572d47962
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}