summaryrefslogtreecommitdiff
path: root/sys/netinet6/ip6_mroute.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-10-21 10:07:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-10-21 10:07:05 +0000
commite2904a7476a4050760669bd4fd50d9570f92d03e (patch)
tree63955cf0a8d4043764bd85ab7abeb4bb4205410c /sys/netinet6/ip6_mroute.c
parentd8e535e2ec2e712e234dc12cd5c249a00437464f (diff)
remove GET_TIME() wrapper
Diffstat (limited to 'sys/netinet6/ip6_mroute.c')
-rw-r--r--sys/netinet6/ip6_mroute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_mroute.c b/sys/netinet6/ip6_mroute.c
index 1acfba9ff2d..ed7be150d9d 100644
--- a/sys/netinet6/ip6_mroute.c
+++ b/sys/netinet6/ip6_mroute.c
@@ -872,7 +872,7 @@ collate(struct timeval *t)
struct timeval tp;
u_long delta;
- GET_TIME(tp);
+ microtime(&tp);
if (TV_LT(*t, tp))
{
@@ -1033,7 +1033,7 @@ ip6_mforward(struct ip6_hdr *ip6, struct ifnet *ifp, struct mbuf *m)
#ifdef UPCALL_TIMING
struct timeval tp;
- GET_TIME(tp);
+ microtime(&tp);
#endif /* UPCALL_TIMING */
mrt6stat.mrt6s_no_route++;