On Thu, Oct 17, 2013 at 07:06:28PM +0400, Dmitry Krivenok wrote: > +bool net_macaddr_is_multicast(uint8_t *macaddr) > +{ > + return (macaddr[0] % 2) ? true : false; > +}
Please use is_multicast_ether_addr() instead. Thanks Amos for pointing out this function is duplicated. I have dropped this patch and will merge the next revision instead.