Use bcopy() instead of memmove().

This commit is contained in:
glebius 2005-05-05 21:10:51 +00:00
parent e31c062e0b
commit dfbc79ffbf

View File

@ -337,7 +337,7 @@ ProxyEncodeTcpStream(struct alias_link *lnk,
p = (char *)pip;
p += hlen;
memmove(p + slen, p, dlen);
bcopy(p + slen, p, dlen);
memcpy(p, buffer, slen);
}