diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-01-26 17:18:48 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-01-26 17:18:48 +0000 |
commit | 9d3fb7c7ebe1c6290510a3f718262d0adc816303 (patch) | |
tree | 5f5b79400ecce570371fb4f26c4768135a0a3e5b /sbin/route/show.c | |
parent | 39c626c50d5e00be49051158974b33b9181db6e3 (diff) |
Mark multipath routes with P in the show command flags. Bummer that both
M and m were already taken. OK henning@
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 e120e253694..c46ffbf6a5b 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.74 2009/01/08 12:52:36 michele Exp $ */ +/* $OpenBSD: show.c,v 1.75 2009/01/26 17:18:47 claudio Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -99,6 +99,7 @@ static const struct bits bits[] = { { RTF_PROTO3, '3' }, { RTF_CLONED, 'c' }, { RTF_JUMBO, 'J' }, + { RTF_MPATH, 'P' }, { 0 } }; |