diff options
-rw-r--r-- | sbin/route/show.c | 5 | ||||
-rw-r--r-- | usr.bin/netstat/route.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c index f65e74954cf..0bdfc2fdfc2 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.15 2000/01/10 01:35:06 angelos Exp $ */ +/* $OpenBSD: show.c,v 1.16 2000/01/14 19:59:17 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.15 2000/01/10 01:35:06 angelos Exp $"; +static char *rcsid = "$OpenBSD: show.c,v 1.16 2000/01/14 19:59:17 deraadt Exp $"; #endif #endif /* not lint */ @@ -86,6 +86,7 @@ static const struct bits bits[] = { { RTF_GATEWAY, 'G' }, { RTF_HOST, 'H' }, { RTF_REJECT, 'R' }, + { RTF_BLACKHOLE, 'B' }, { RTF_DYNAMIC, 'D' }, { RTF_MODIFIED, 'M' }, { RTF_DONE, 'd' }, /* Completed -- for routing messages only */ diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index c7c2e7a9783..f884be8ee78 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.33 2000/01/09 22:57:37 angelos Exp $ */ +/* $OpenBSD: route.c,v 1.34 2000/01/14 19:59:18 deraadt Exp $ */ /* $NetBSD: route.c,v 1.15 1996/05/07 02:55:06 thorpej Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94"; #else -static char *rcsid = "$OpenBSD: route.c,v 1.33 2000/01/09 22:57:37 angelos Exp $"; +static char *rcsid = "$OpenBSD: route.c,v 1.34 2000/01/14 19:59:18 deraadt Exp $"; #endif #endif /* not lint */ @@ -99,6 +99,7 @@ struct bits { { RTF_GATEWAY, 'G' }, { RTF_HOST, 'H' }, { RTF_REJECT, 'R' }, + { RTF_BLACKHOLE, 'B' }, { RTF_DYNAMIC, 'D' }, { RTF_MODIFIED, 'M' }, { RTF_DONE, 'd' }, /* Completed -- for routing messages only */ |