diff options
author | julian <julian@FreeBSD.org> | 1998-07-02 05:49:12 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1998-07-02 05:49:12 +0000 |
commit | 8286a7feb0262bc600c71a75b32e55a2ce9f6aa9 (patch) | |
tree | f17727e5db0d543e16a1b0f18932fd1395b614f0 /sys/netinet/ip_input.c | |
parent | 84a8617808cff307a07ac3793917b3a187ccab18 (diff) | |
download | FreeBSD-src-8286a7feb0262bc600c71a75b32e55a2ce9f6aa9.zip FreeBSD-src-8286a7feb0262bc600c71a75b32e55a2ce9f6aa9.tar.gz |
Remove the option to keep IPFW diversion backwards compatible
WRT diversion reinjection. No-one has been bitten by the new behaviour
that I know of.
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r-- | sys/netinet/ip_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 3020a58..91b1c8e 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_input.c 8.2 (Berkeley) 1/4/94 - * $Id: ip_input.c,v 1.89 1998/06/06 21:49:16 julian Exp $ + * $Id: ip_input.c,v 1.90 1998/06/12 03:48:16 julian Exp $ * $ANA: ip_input.c,v 1.5 1996/09/18 14:34:59 wollman Exp $ */ @@ -358,7 +358,8 @@ tooshort: u_short port; port = (*ip_fw_chk_ptr)(&ip, hlen, NULL, &ip_divert_cookie, &m); - if (port) { /* Divert packet */ + if (port) { + /* Divert packet */ frag_divert_port = port; goto ours; } |