Another patch against this code (the right one now) to deal with cyclic ranges. #6230

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8059 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
BJ Weschke 20 years ago
parent 46b6488927
commit 21796e2569

@ -3747,8 +3747,8 @@ static unsigned get_range(char *src, int max, char *const names[], const char *m
e = s;
}
/* Fill the mask. Remember that ranges are cyclic */
mask = 1 << s; /* last element in case s == e */
for ( ; s<=e; s++) {
mask = 1 << e; /* initialize with last element */
for ( ; s != e; s++) {
if (s == max)
s = 0 ;
mask |= (1 << s);

Loading…
Cancel
Save