Fix argument order for bcopy() in last commit.

Noticed by:	njl
Pointy hat to:	glebius
This commit is contained in:
Gleb Smirnoff 2005-05-05 21:40:49 +00:00
parent efdc8fbf79
commit c8d3ca728f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145930

View File

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