summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/frag6.c
diff options
context:
space:
mode:
authorshin <shin@FreeBSD.org>1999-12-09 08:56:50 +0000
committershin <shin@FreeBSD.org>1999-12-09 08:56:50 +0000
commitd2ada32bc048622b4dfbb5b651af0154b4821486 (patch)
treee244b585518da11ab8cb78aabd2a7af09a3e7756 /sys/netinet6/frag6.c
parent785c739893734950762c94f0987935428208d936 (diff)
downloadFreeBSD-src-d2ada32bc048622b4dfbb5b651af0154b4821486.zip
FreeBSD-src-d2ada32bc048622b4dfbb5b651af0154b4821486.tar.gz
rtcalloc() is removed because it turned out not to be necessary for FreeBSD.
(It was added as a part of KAME patch) Specified by: jdp@polstra.com
Diffstat (limited to 'sys/netinet6/frag6.c')
-rw-r--r--sys/netinet6/frag6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/frag6.c b/sys/netinet6/frag6.c
index 390ab13e..f7cfbc0 100644
--- a/sys/netinet6/frag6.c
+++ b/sys/netinet6/frag6.c
@@ -133,7 +133,7 @@ frag6_input(mp, offp, proto)
dst->sin6_len = sizeof(struct sockaddr_in6);
dst->sin6_addr = ip6->ip6_dst;
}
- rtcalloc((struct route *)&ro);
+ rtalloc((struct route *)&ro);
if (ro.ro_rt != NULL && ro.ro_rt->rt_ifa != NULL)
dstifp = ((struct in6_ifaddr *)ro.ro_rt->rt_ifa)->ia_ifp;
#else
OpenPOWER on IntegriCloud