mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
As part of r196609, a call to "rtalloc" did not take the fib into
account. So call the appropriate "rtalloc_ign_fib()" instead of calling "rtalloc_ign()". Reviewed by: pointed out by bz Approved by: re
This commit is contained in:
parent
87d2d9c556
commit
c7276c59ff
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ route_output(struct mbuf *m, struct socket *so)
|
|||
|
||||
bzero(&gw_ro, sizeof(gw_ro));
|
||||
gw_ro.ro_dst = *info.rti_info[RTAX_GATEWAY];
|
||||
rtalloc_ign(&gw_ro, 0);
|
||||
rtalloc_ign_fib(&gw_ro, 0, so->so_fibnum);
|
||||
/*
|
||||
* A host route through the loopback interface is
|
||||
* installed for each interface adddress. In pre 8.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue