From 0eefe3ee3fc5743f1eb6b0390ffaec5cfdf40f15 Mon Sep 17 00:00:00 2001 From: rwatson Date: Sun, 2 Jan 2005 01:39:38 +0000 Subject: Prefer rtalloc_ign() API to rtalloc() API. --- sys/netipx/ipx_outputfl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netipx/ipx_outputfl.c') diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c index bdca9a2..c2585dc 100644 --- a/sys/netipx/ipx_outputfl.c +++ b/sys/netipx/ipx_outputfl.c @@ -91,14 +91,14 @@ ipx_outputfl(m0, ro, flags) ifp = ia->ia_ifp; goto gotif; } - rtalloc(ro); + rtalloc_ign(ro, 0); } else if ((ro->ro_rt->rt_flags & RTF_UP) == 0) { /* * The old route has gone away; try for a new one. */ rtfree(ro->ro_rt); ro->ro_rt = NULL; - rtalloc(ro); + rtalloc_ign(ro, 0); } if (ro->ro_rt == NULL || (ifp = ro->ro_rt->rt_ifp) == NULL) { ipxstat.ipxs_noroute++; -- cgit v1.1