summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2000-01-05 00:07:09 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2000-01-05 00:07:09 +0000
commitbeacb92bbce90148ade1f89916741e473b5c194d (patch)
tree6b5f8aa75ce3db3a12cd1c54ee33226daf51aa01
parent2205586954a2f5f0c7ee8e5f8178032df774cc62 (diff)
s/input histogram/input packet/histogram/
suggested by: deraadt
-rw-r--r--usr.bin/netstat/inet.c8
-rw-r--r--usr.bin/netstat/inet6.c10
2 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c
index 42a84330815..290ebf408ab 100644
--- a/usr.bin/netstat/inet.c
+++ b/usr.bin/netstat/inet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inet.c,v 1.42 2000/01/03 04:27:57 itojun Exp $ */
+/* $OpenBSD: inet.c,v 1.43 2000/01/05 00:07:08 itojun Exp $ */
/* $NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $ */
/*
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)inet.c 8.4 (Berkeley) 4/20/94";
#else
-static char *rcsid = "$OpenBSD: inet.c,v 1.42 2000/01/03 04:27:57 itojun Exp $";
+static char *rcsid = "$OpenBSD: inet.c,v 1.43 2000/01/05 00:07:08 itojun Exp $";
#endif
#endif /* not lint */
@@ -427,7 +427,7 @@ icmp_stats(off, name)
for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++)
if (icmpstat.icps_outhist[i] != 0) {
if (first) {
- printf("\tOutput histogram:\n");
+ printf("\tOutput packet histogram:\n");
first = 0;
}
printf("\t\t%s: %lu\n", icmpnames[i],
@@ -440,7 +440,7 @@ icmp_stats(off, name)
for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++)
if (icmpstat.icps_inhist[i] != 0) {
if (first) {
- printf("\tInput histogram:\n");
+ printf("\tInput packet histogram:\n");
first = 0;
}
printf("\t\t%s: %lu\n", icmpnames[i],
diff --git a/usr.bin/netstat/inet6.c b/usr.bin/netstat/inet6.c
index 30d9e1f2718..82bc0164d7c 100644
--- a/usr.bin/netstat/inet6.c
+++ b/usr.bin/netstat/inet6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inet6.c,v 1.2 1999/12/30 20:31:31 deraadt Exp $ */
+/* $OpenBSD: inet6.c,v 1.3 2000/01/05 00:07:08 itojun Exp $ */
/* BSDI inet.c,v 2.3 1995/10/24 02:19:29 prb Exp */
/*
* Copyright (c) 1983, 1988, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)inet.c 8.4 (Berkeley) 4/20/94";
#else
-/*__RCSID("$OpenBSD: inet6.c,v 1.2 1999/12/30 20:31:31 deraadt Exp $");*/
+/*__RCSID("$OpenBSD: inet6.c,v 1.3 2000/01/05 00:07:08 itojun Exp $");*/
/*__RCSID("KAME Id: inet6.c,v 1.4 1999/12/02 04:47:27 itojun Exp");*/
#endif
#endif /* not lint */
@@ -481,7 +481,7 @@ ip6_stats(off, name)
for (first = 1, i = 0; i < 256; i++)
if (ip6stat.ip6s_nxthist[i] != 0) {
if (first) {
- printf("\tInput histogram:\n");
+ printf("\tInput packet histogram:\n");
first = 0;
}
printf("\t\t%s: %qu\n", ip6nh[i],
@@ -850,7 +850,7 @@ icmp6_stats(off, name)
for (first = 1, i = 0; i < 256; i++)
if (icmp6stat.icp6s_outhist[i] != 0) {
if (first) {
- printf("\tOutput histogram:\n");
+ printf("\tOutput packet histogram:\n");
first = 0;
}
printf("\t\t%s: %qu\n", icmp6names[i],
@@ -863,7 +863,7 @@ icmp6_stats(off, name)
for (first = 1, i = 0; i < ICMP6_MAXTYPE; i++)
if (icmp6stat.icp6s_inhist[i] != 0) {
if (first) {
- printf("\tInput histogram:\n");
+ printf("\tInput packet histogram:\n");
first = 0;
}
printf("\t\t%s: %qu\n", icmp6names[i],