Re: bgpd switch to memxyz() from bxyz()

2022-08-17 Thread Theo Buehler
On Wed, Aug 17, 2022 at 04:04:26PM +0200, Claudio Jeker wrote: > I did switch to memset from bzero and from bcopy to memcpy whenever I > touched the code but now I just decided to change all users of bcopy(), > bzero() and bcmp() to use memcpy(), memset() and memcmp(). > > None of the bcopy()

bgpd switch to memxyz() from bxyz()

2022-08-17 Thread Claudio Jeker
I did switch to memset from bzero and from bcopy to memcpy whenever I touched the code but now I just decided to change all users of bcopy(), bzero() and bcmp() to use memcpy(), memset() and memcmp(). None of the bcopy() users had overlapping memory regions so memcpy() should be fine. -- :wq