svn commit: r193820 - head/sys/net
Bjoern A. Zeeb
bz at FreeBSD.org
Tue Jun 9 09:50:44 UTC 2009
Author: bz
Date: Tue Jun 9 09:50:43 2009
New Revision: 193820
URL: http://svn.freebsd.org/changeset/base/193820
Log:
Remove one INET dependency by calling the general
AF agnostic version for doing the routing lookup.
Reviewed by: kmacy
Modified:
head/sys/net/flowtable.c
Modified: head/sys/net/flowtable.c
==============================================================================
--- head/sys/net/flowtable.c Tue Jun 9 09:47:02 2009 (r193819)
+++ head/sys/net/flowtable.c Tue Jun 9 09:50:43 2009 (r193820)
@@ -407,7 +407,7 @@ static void
in_rtalloc_ign_wrapper(struct route *ro, uint32_t hash, u_int fib)
{
- in_rtalloc_ign(ro, 0, fib);
+ rtalloc_ign_fib(ro, 0, fib);
}
#endif
More information about the svn-src-all
mailing list