diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-06 17:55:56 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-06 17:55:56 +0000 |
commit | 30251e3e7972125c3789687e1b3a8eab936430d2 (patch) | |
tree | 4afc8bca1752606161e1a1921e8c52d2db0a201a /sys/net/if.c | |
parent | 9a53bd4b5a25066a54c3cbf2f1812cdb86cd2610 (diff) |
Rename rt_mpath_next() into rtable_mpath_next() and provide an
implementation for ART based on the singly-linked list of route
entries.
Diffstat (limited to 'sys/net/if.c')
-rw-r--r-- | sys/net/if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index a93599f930f..a37709f1d1c 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.402 2015/11/03 12:25:37 mpi Exp $ */ +/* $OpenBSD: if.c,v 1.403 2015/11/06 17:55:55 mpi Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -2356,7 +2356,7 @@ if_group_egress_build(void) if_put(ifp); } #ifndef SMALL_KERNEL - rt = rt_mpath_next(rt); + rt = rtable_mpath_next(rt); #else rt = NULL; #endif @@ -2377,7 +2377,7 @@ if_group_egress_build(void) if_put(ifp); } #ifndef SMALL_KERNEL - rt = rt_mpath_next(rt); + rt = rtable_mpath_next(rt); #else rt = NULL; #endif |