On 21:08 Tue 17 Mar , Sasha Khapyorsky wrote: > > +{ > > + if (memcmp(p_gid, &ib_zero_gid, sizeof(*p_gid))) > > + return TRUE; > > + return FALSE; > > Did this as 'return !memcmp(....)' to simplify the flow. Assuming 'return memcmp()' of course :) Sasha