On 02/19/2014 07:14 PM, Alex Balashov wrote:
On 02/19/2014 06:51 PM, Kristian Kielhofner wrote: if((flags & POWPOW) != POWPOW) printf("Problem?\n");
sasha@tambourine:~$ ./ns Problem?
Are there other UL contact flags that could be in use here and breaking this comparison in get_all_mem_ucontacts()?
Well, scratch that thought. If the 'flags' value being passed to get_all_mem_ucontacts() is 0, bitwise ANDing with 0 will always yield 0, even if there are other bits set.
So, that's not it. Hmm.