summaryrefslogtreecommitdiff
path: root/sys/netinet6/nd6.c
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2015-10-30 09:39:43 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2015-10-30 09:39:43 +0000
commit9dc59b799020d5067475c25c2432a337a34ac618 (patch)
tree40a6a54478602ba3a5a3260a519a6ef275c4b5c6 /sys/netinet6/nd6.c
parentb7d21a0b11a579fc9038f789e7ed408129224814 (diff)
Rename rtrequest1() to rtrequest().
OK mpi@
Diffstat (limited to 'sys/netinet6/nd6.c')
-rw-r--r--sys/netinet6/nd6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index 9ae16db1ee3..5a2bdd42600 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nd6.c,v 1.166 2015/10/29 14:28:34 mpi Exp $ */
+/* $OpenBSD: nd6.c,v 1.167 2015/10/30 09:39:42 bluhm Exp $ */
/* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */
/*
@@ -631,13 +631,13 @@ nd6_lookup(struct in6_addr *addr6, int create, struct ifnet *ifp,
* Create a new route. RTF_LLINFO is necessary
* to create a Neighbor Cache entry for the
* destination in nd6_rtrequest which will be
- * called in rtrequest1.
+ * called in rtrequest.
*/
bzero(&info, sizeof(info));
info.rti_flags = RTF_HOST | RTF_LLINFO;
info.rti_info[RTAX_DST] = sin6tosa(&sin6);
info.rti_info[RTAX_GATEWAY] = sdltosa(ifp->if_sadl);
- error = rtrequest1(RTM_ADD, &info, RTP_CONNECTED, &rt,
+ error = rtrequest(RTM_ADD, &info, RTP_CONNECTED, &rt,
rtableid);
if (error)
return (NULL);