diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-08 03:55:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-08 03:55:26 +0000 |
commit | ea95dc74b7d2c8e5ef1517edebc553deb040bc39 (patch) | |
tree | 46cb6bcec2995a42be610e93be26286200ca6bf1 /sbin/route | |
parent | b68de49020ed231adc0661c582e046f8ce578c8d (diff) |
start at appletalk...
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; |