From fa35066966222a141e505330f5a412fd0f9260bf Mon Sep 17 00:00:00 2001 From: Keith Sklower Date: Wed, 15 Feb 1989 02:46:02 -0800 Subject: [PATCH] minor berkeley change concering struct routes SCCS-vsn: sys/netiso/clnp_subr.c 7.2 --- usr/src/sys/netiso/clnp_subr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/sys/netiso/clnp_subr.c b/usr/src/sys/netiso/clnp_subr.c index ed946ff7cd..cb6c085d2a 100644 --- a/usr/src/sys/netiso/clnp_subr.c +++ b/usr/src/sys/netiso/clnp_subr.c @@ -211,7 +211,7 @@ struct snpa_hdr *inbound_shp; /* subnetwork header of inbound packet */ int error; /* return value of route function */ struct sockaddr *next_hop; /* next hop for dgram */ struct ifnet *ifp; /* ptr to outgoing interface */ - struct route route; /* filled in by clnp_route */ + struct route_iso route; /* filled in by clnp_route */ extern int iso_systype; clnp = mtod(m, struct clnp_fixed *); @@ -375,7 +375,7 @@ register struct iso_addr *dstp; /* ptr to dst addr */ */ clnp_route(dst, ro, flags, first_hop, ifp) struct iso_addr *dst; /* ptr to datagram destination */ -struct route *ro; /* existing route structure */ +struct route_iso *ro; /* existing route structure */ int flags; /* flags for routing */ struct sockaddr **first_hop; /* result: fill in with ptr to firsthop */ struct ifnet **ifp; /* result: fill in with ptr to interface */ -- 2.20.1