From: BJ Weschke Date: Fri, 13 Jan 2006 17:35:12 +0000 (+0000) Subject: Another patch against this code (the right one now) to deal with cyclic ranges.... X-Git-Tag: 1.4.0-beta1~2948 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21796e2569efcf5e882fda5246fdce95ae19ebd2;p=thirdparty%2Fasterisk.git 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 --- diff --git a/pbx.c b/pbx.c index 38c6e5d5d7..7759e141bd 100644 --- a/pbx.c +++ b/pbx.c @@ -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);