diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-01-14 19:59:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-01-14 19:59:19 +0000 |
commit | 79cad7d68cb7fc915ad1b0276f7a58588b77a57f (patch) | |
tree | d7d1de463287fc2595bdc0d267ddc82a9d716da5 /usr.bin/netstat/route.c | |
parent | 7c4d12fa9f16278c0ca81156ecae9ba15b875043 (diff) |
show blackhole flag; ura@hiru.aoba.yokohama.jp
Diffstat (limited to 'usr.bin/netstat/route.c')
-rw-r--r-- | usr.bin/netstat/route.c | 5 |
1 files changed, 3 insertions, 2 deletions
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 */ |