summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/net/route.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/route.c b/sys/net/route.c
index 17f6c444974..38286b8f605 100644
--- a/sys/net/route.c
+++ b/sys/net/route.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: route.c,v 1.302 2016/05/31 07:42:39 mpi Exp $ */
+/* $OpenBSD: route.c,v 1.303 2016/06/01 06:40:27 dlg Exp $ */
/* $NetBSD: route.c,v 1.14 1996/02/13 22:00:46 christos Exp $ */
/*
@@ -210,7 +210,7 @@ rtisvalid(struct rtentry *rt)
if ((rt->rt_flags & RTF_UP) == 0)
return (0);
- /* Routes attached to stall ifas should be freed. */
+ /* Routes attached to stale ifas should be freed. */
if (rt->rt_ifa == NULL || rt->rt_ifa->ifa_ifp == NULL)
return (0);