From fa23219cf28bf399108802efb71595016490a475 Mon Sep 17 00:00:00 2001 From: glebius Date: Thu, 5 May 2005 21:40:49 +0000 Subject: Fix argument order for bcopy() in last commit. Noticed by: njl Pointy hat to: glebius --- sys/netinet/libalias/alias_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet/libalias') diff --git a/sys/netinet/libalias/alias_proxy.c b/sys/netinet/libalias/alias_proxy.c index b33715f..f131589 100644 --- a/sys/netinet/libalias/alias_proxy.c +++ b/sys/netinet/libalias/alias_proxy.c @@ -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); } -- cgit v1.1