> On Sept. 3, 2014, 4:16 p.m., rmudgett wrote: > > /branches/1.8/main/manager.c, lines 3133-3134 > > <https://reviewboard.asterisk.org/r/3969/diff/2/?file=67179#file67179line3133> > > > > You need to have the isolation parens for the bitwise operators. > > (send_events & x) && (readperm & x)
Order of operations dictates that & will be computed before && anyway ( http://en.cppreference.com/w/c/language/operator_precedence ) but for the sake of clarity and keeping things the same I'll go ahead and make this fix. - Jonathan ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviewboard.asterisk.org/r/3969/#review13224 ----------------------------------------------------------- On Sept. 2, 2014, 6:24 p.m., Jonathan Rose wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviewboard.asterisk.org/r/3969/ > ----------------------------------------------------------- > > (Updated Sept. 2, 2014, 6:24 p.m.) > > > Review request for Asterisk Developers and Matt Jordan. > > > Repository: Asterisk > > > Description > ------- > > Apparently instead of using the readperm mask, it was using the send_events > mask... which is somewhat weird. It's initialized to -1 (which will return > true when used with bitwise and on EVENT_FLAG_SYSTEM) and this is where the > odd behavior came from. > > I think this was just a mistake and switching to the readperm mask appears to > have fixed it. > > > Diffs > ----- > > /branches/1.8/main/manager.c 422543 > > Diff: https://reviewboard.asterisk.org/r/3969/diff/ > > > Testing > ------- > > Ran through the login process with and without the system read permission. > With it, I got the FullyBootted event. Without it, I did not. > > > Thanks, > > Jonathan Rose > >
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev