diff options
Diffstat (limited to 'sys/netinet/ip_fastfwd.c')
| -rw-r--r-- | sys/netinet/ip_fastfwd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_fastfwd.c b/sys/netinet/ip_fastfwd.c index f831b392d6eb4..667a04c2281f0 100644 --- a/sys/netinet/ip_fastfwd.c +++ b/sys/netinet/ip_fastfwd.c @@ -488,7 +488,7 @@ passin: dst->sin_family = AF_INET; dst->sin_len = sizeof(*dst); dst->sin_addr.s_addr = dest; - rtalloc_ign(&ro, (RTF_PRCLONING | RTF_CLONING)); + rtalloc_ign(&ro, RTF_CLONING); /* * Route there and interface still up? @@ -692,7 +692,7 @@ droptoours: /* Used for DIVERT */ dst->sin_family = AF_INET; dst->sin_len = sizeof(*dst); dst->sin_addr.s_addr = dest; - rtalloc_ign(&ro, (RTF_PRCLONING | RTF_CLONING)); + rtalloc_ign(&ro, RTF_CLONING); /* * Route there and interface still up? |
