From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 15 14:00:34 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17AF816A4CE for ; Thu, 15 Jan 2004 14:00:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 155AC43D8B for ; Thu, 15 Jan 2004 14:00:26 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i0FM0PFR031940 for ; Thu, 15 Jan 2004 14:00:25 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i0FM0P9S031939; Thu, 15 Jan 2004 14:00:25 -0800 (PST) (envelope-from gnats) Date: Thu, 15 Jan 2004 14:00:25 -0800 (PST) Message-Id: <200401152200.i0FM0P9S031939@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: P Kern Subject: Re: kern/61259: [patch] make "ipfw tee" work as intended under freebsd-5 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: P Kern List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jan 2004 22:00:34 -0000 The following reply was made to PR kern/61259; it has been noted by GNATS. From: P Kern To: freebsd-gnats-submit@FreeBSD.org, pak@cns.utoronto.ca Cc: Subject: Re: kern/61259: [patch] make "ipfw tee" work as intended under freebsd-5 Date: Thu, 15 Jan 2004 16:59:25 -0500 Please see my follow-up to ... http://www.freebsd.org/cgi/query-pr.cgi?pr=60377 The patch for ip_input.c now reads .... if (clone != NULL) { ... ip_input(...); return; } ... but it should instead read ... if (clone != NULL) { ... ip_input(...); } return; Sorry about that. Hope this helps. pak.