aboutsummaryrefslogtreecommitdiff
path: root/sys/netipx
diff options
context:
space:
mode:
authorKip Macy <kmacy@FreeBSD.org>2009-04-16 20:30:28 +0000
committerKip Macy <kmacy@FreeBSD.org>2009-04-16 20:30:28 +0000
commit279aa3d419d5bfaf514ed543ab177852e4c2b013 (patch)
treef09ffe8dbc619e723cdaebdc910a5ed28f73768b /sys/netipx
parentfe6939906918258e6c2cf78df5f5f14d893ec1a0 (diff)
downloadsrc-279aa3d419d5bfaf514ed543ab177852e4c2b013.tar.gz
src-279aa3d419d5bfaf514ed543ab177852e4c2b013.zip
Change if_output to take a struct route as its fourth argument in order
to allow passing a cached struct llentry * down to L2 Reviewed by: rwatson
Notes
Notes: svn path=/head/; revision=191148
Diffstat (limited to 'sys/netipx')
-rw-r--r--sys/netipx/ipx_outputfl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c
index 61d8759ee55c..9c88f4327ca2 100644
--- a/sys/netipx/ipx_outputfl.c
+++ b/sys/netipx/ipx_outputfl.c
@@ -154,7 +154,7 @@ gotif:
ipx_watch_output(m0, ifp);
}
error = (*ifp->if_output)(ifp, m0,
- (struct sockaddr *)dst, ro->ro_rt);
+ (struct sockaddr *)dst, ro);
goto done;
} else {
ipxstat.ipxs_mtutoosmall++;