diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-06-01 06:40:28 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-06-01 06:40:28 +0000 |
commit | 327ae729c59e31c825249999ffc6333169a590c9 (patch) | |
tree | 04d9925a0e46977a68ba434955e53f6c5a83a3cf /sys/net/route.c | |
parent | f2c2d07c96ba0f1f99d988681a407e201c89d41f (diff) |
s/stall/stale/ in a comment about old interfaces.
ok mpi@
Diffstat (limited to 'sys/net/route.c')
-rw-r--r-- | sys/net/route.c | 4 |
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); |