diff options
Diffstat (limited to 'sbin/route')
-rw-r--r-- | sbin/route/show.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c index 33e8b98abaa..0d3ae3ba673 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.4 1997/10/02 02:10:57 angelos Exp $ */ +/* $OpenBSD: show.c,v 1.5 1997/12/08 03:55:25 deraadt Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94"; #else -static char *rcsid = "$OpenBSD: show.c,v 1.4 1997/10/02 02:10:57 angelos Exp $"; +static char *rcsid = "$OpenBSD: show.c,v 1.5 1997/12/08 03:55:25 deraadt Exp $"; #endif #endif /* not lint */ @@ -252,6 +252,9 @@ pr_family(af) case AF_ENCAP: afname = "IPsec"; break; + case AF_APPLETALK: + afname = "AppleTalk"; + break; default: afname = NULL; break; |