Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Jan 2004 14:00:25 -0800 (PST)
From:      P Kern <pak@cns.utoronto.ca>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/61259: [patch] make "ipfw tee" work as intended under freebsd-5
Message-ID:  <200401152200.i0FM0P9S031939@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/61259; it has been noted by GNATS.

From: P Kern <pak@cns.utoronto.ca>
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.
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401152200.i0FM0P9S031939>