Hi Arturo, On Wed, Jun 05, 2013 at 11:37:13PM +0200, Arturo Borrero wrote: > These functions unset the flag for the given attribute in each object and free data in some cases. > > About the xor op, other option was: > > if (x->flags & (1 << attr)) > x->flags ^= (1 << attr); To unset, use: x->flags &= ~(1 << attr) Regards. -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html