From owner-cvs-src@FreeBSD.ORG Tue Dec 2 13:25:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E250B16A4CE; Tue, 2 Dec 2003 13:25:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38F2643FAF; Tue, 2 Dec 2003 13:25:13 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hB2LPDXJ074254; Tue, 2 Dec 2003 13:25:13 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hB2LPCob074253; Tue, 2 Dec 2003 13:25:12 -0800 (PST) (envelope-from andre) Message-Id: <200312022125.hB2LPCob074253@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 2 Dec 2003 13:25:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_hostcache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Dec 2003 21:25:14 -0000 andre 2003/12/02 13:25:12 PST FreeBSD src repository Modified files: sys/netinet tcp_hostcache.c Log: Swap destination and source arguments of two bcopy() calls. Before committing the initial tcp_hostcache I changed them from memcpy() to conform with FreeBSD style without realizing the difference in argument definition. This fixes hostcache operation for IPv6 (in general and explicitly IPv6 path mtu discovery) and T/TCP (RFC1644). Submitted by: Taku YAMAMOTO Approved by: re (rwatson) Revision Changes Path 1.3 +2 -2 src/sys/netinet/tcp_hostcache.c