diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-04-12 09:24:45 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-04-12 09:24:45 +0000 |
commit | eaeba31651fc924649ded1b8acf725e6d3e4c94d (patch) | |
tree | 298ca5716795a2cfe3f11a619c20a0cd772c749c /usr.bin | |
parent | ad6e35c742047f496a5538654ef47a609a2496c8 (diff) |
use "/bypass" instead of "/permit" when showing bypass flows
ok henning claudio
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/netstat/route.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index 0bee6446773..07515b1434a 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.70 2005/06/08 04:47:04 henning Exp $ */ +/* $OpenBSD: route.c,v 1.71 2006/04/12 09:24:44 hshoexer Exp $ */ /* $NetBSD: route.c,v 1.15 1996/05/07 02:55:06 thorpej Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94"; #else -static char *rcsid = "$OpenBSD: route.c,v 1.70 2005/06/08 04:47:04 henning Exp $"; +static char *rcsid = "$OpenBSD: route.c,v 1.71 2006/04/12 09:24:44 hshoexer Exp $"; #endif #endif /* not lint */ @@ -1017,7 +1017,7 @@ encap_print(struct rtentry *rt) printf("/dontacq"); break; case IPSP_PERMIT: - printf("/permit"); + printf("/bypass"); break; case IPSP_DENY: printf("/deny"); |