diff options
author | Michele Marchetto <michele@cvs.openbsd.org> | 2009-06-27 11:35:58 +0000 |
---|---|---|
committer | Michele Marchetto <michele@cvs.openbsd.org> | 2009-06-27 11:35:58 +0000 |
commit | fbc6f123930a792090f559e2758ef76d27d2ff7b (patch) | |
tree | 9254e39003cb08bf6a2b1dc92cd1bc310335c957 /sbin/route/show.c | |
parent | c457a3dd709b31cca2c555a898f410a2872ed079 (diff) |
Mark MPLS routes with T (tagged) in route output.
suggested by dlg@, ok claudio@, laurent@, blambert@
Diffstat (limited to 'sbin/route/show.c')
-rw-r--r-- | sbin/route/show.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c index 68a6dad167b..9ccb0662ccd 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.79 2009/05/31 18:02:28 claudio Exp $ */ +/* $OpenBSD: show.c,v 1.80 2009/06/27 11:35:57 michele Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -100,6 +100,7 @@ static const struct bits bits[] = { { RTF_CLONED, 'c' }, { RTF_JUMBO, 'J' }, { RTF_MPATH, 'P' }, + { RTF_MPLS, 'T' }, { 0 } }; |