kern/61259: [patch] make "ipfw tee" work as intended under freebsd-5

P Kern pak at cns.utoronto.ca
Thu Jan 15 14:00:34 PST 2004


The following reply was made to PR kern/61259; it has been noted by GNATS.

From: P Kern <pak at cns.utoronto.ca>
To: freebsd-gnats-submit at FreeBSD.org, pak at 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.
 


More information about the freebsd-bugs mailing list