diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-03-30 13:58:31 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-03-30 13:58:31 +0000 |
commit | e7aa9de441c30d934e2fdb664a1dfe73a38b6f58 (patch) | |
tree | 2c81aa01c28bc4e4e1c5ac1c3221597506b56b17 /sbin | |
parent | df79e05a412b3308c84d211d6d2e47e90f55b648 (diff) |
Print the "Encap" heading only when the sadb is not empty.
Fix identation (was off by one space).
both requested and ok markus@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/route/show.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c index 6de0f9e8170..594ef768d64 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.48 2006/03/30 12:11:37 claudio Exp $ */ +/* $OpenBSD: show.c,v 1.49 2006/03/30 13:58:30 hshoexer Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -159,8 +159,6 @@ p_rttables(int af, int Aflag) if (af != 0 && af != PF_KEY) return; - printf("\nEncap:\n"); - mib[0] = CTL_NET; mib[1] = PF_KEY; mib[2] = PF_KEY_V2; @@ -178,6 +176,8 @@ p_rttables(int af, int Aflag) } if (buf) { + printf("\nEncap:\n"); + for (next = buf; next < lim; next += msg->sadb_msg_len * PFKEYV2_CHUNK) { msg = (struct sadb_msg *)next; @@ -380,7 +380,7 @@ void p_protocol(struct sadb_protocol *sap, struct sockaddr *sa, struct sadb_protocol *saft, int proto) { - printf("%-5u", sap->sadb_protocol_proto); + printf("%-6u", sap->sadb_protocol_proto); p_sockaddr(sa, NULL, 0, -1); switch (proto) { |