CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2025/01/22 02:37:06
Modified files: sys/netinet : tcp_subr.c Log message: Convert bcopy() to memcpy() in tcp_respond(). Struct ip, ip6, and th point to locations on m, which is new memory from m_gethdr(). There is no overlapping memory, so use memcpy. from dhill@; OK mvs@