diff options
author | 1997-12-08 03:55:25 +0000 | |
---|---|---|
committer | 1997-12-08 03:55:25 +0000 | |
commit | 4abddac8fe8acba145eeaff08fdfdfa9f58ff2ac (patch) | |
tree | c6f9659f684fa37735143ec70681f7dfaac4ad10 | |
parent | avoid fclose(NULL) (diff) | |
download | wireguard-openbsd-4abddac8fe8acba145eeaff08fdfdfa9f58ff2ac.tar.xz wireguard-openbsd-4abddac8fe8acba145eeaff08fdfdfa9f58ff2ac.zip |
start at appletalk...
-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; |