| Summary: | [patch] make "ipfw tee" work as intended under freebsd-5 | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | P Kern <pak> | ||||
| Component: | kern | Assignee: | Andre Oppermann <andre> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | CC: | pak | ||||
| Priority: | Normal | ||||||
| Version: | Unspecified | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
P Kern
2004-01-12 17:10:18 UTC
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. Responsible Changed From-To: freebsd-bugs->ipfw Assign to ipfw mailing list Responsible Changed From-To: ipfw->andre Take over. State Changed From-To: open->closed A fix for the 'ipfw tee' problem is developed and tracked in kern/64240. |