summaryrefslogtreecommitdiffstats
path: root/sys/net
diff options
context:
space:
mode:
authormpp <mpp@FreeBSD.org>1996-01-30 23:02:38 +0000
committermpp <mpp@FreeBSD.org>1996-01-30 23:02:38 +0000
commitf3dd75a38d66ed54a0f2660b0a27d177fb33f068 (patch)
treed5a8ea90ac641a456fff5afceb0a72173a7abe6e /sys/net
parent7b3fa6ae274a3569da985e1b817e786e36f17f44 (diff)
downloadFreeBSD-src-f3dd75a38d66ed54a0f2660b0a27d177fb33f068.zip
FreeBSD-src-f3dd75a38d66ed54a0f2660b0a27d177fb33f068.tar.gz
Fix a bunch of spelling errors in the comment fields of
a bunch of system include files.
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/bpf.h4
-rw-r--r--sys/net/bpfdesc.h4
-rw-r--r--sys/net/if_llc.h4
-rw-r--r--sys/net/if_ppp.h8
-rw-r--r--sys/net/if_pppvar.h4
-rw-r--r--sys/net/if_slvar.h6
-rw-r--r--sys/net/if_sppp.h2
-rw-r--r--sys/net/route.h6
-rw-r--r--sys/net/slcompress.h4
9 files changed, 21 insertions, 21 deletions
diff --git a/sys/net/bpf.h b/sys/net/bpf.h
index 2be8635..626e7c6 100644
--- a/sys/net/bpf.h
+++ b/sys/net/bpf.h
@@ -37,7 +37,7 @@
*
* @(#)bpf.h 8.1 (Berkeley) 6/10/93
*
- * $Id: bpf.h,v 1.6 1995/09/08 11:08:55 bde Exp $
+ * $Id: bpf.h,v 1.7 1995/11/04 13:25:03 bde Exp $
*/
#ifndef _NET_BPF_H_
@@ -166,7 +166,7 @@ struct bpf_hdr {
#define DLT_FDDI 10 /* FDDI */
/*
- * The instruction encondings.
+ * The instruction encodings.
*/
/* instruction classes */
#define BPF_CLASS(code) ((code) & 0x07)
diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h
index 0474c8a..dff9aca 100644
--- a/sys/net/bpfdesc.h
+++ b/sys/net/bpfdesc.h
@@ -37,7 +37,7 @@
*
* @(#)bpfdesc.h 8.1 (Berkeley) 6/10/93
*
- * $Id: bpfdesc.h,v 1.5 1995/06/15 18:11:00 pst Exp $
+ * $Id: bpfdesc.h,v 1.6 1995/12/14 09:53:11 phk Exp $
*/
#ifndef _NET_BPFDESC_H_
@@ -98,7 +98,7 @@ struct bpf_if {
struct bpf_if **bif_driverp; /* pointer into softc */
u_int bif_dlt; /* link layer type */
u_int bif_hdrlen; /* length of header (with padding) */
- struct ifnet *bif_ifp; /* correspoding interface */
+ struct ifnet *bif_ifp; /* corresponding interface */
};
#endif
diff --git a/sys/net/if_llc.h b/sys/net/if_llc.h
index da89ee7..b58c4b2 100644
--- a/sys/net/if_llc.h
+++ b/sys/net/if_llc.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)if_llc.h 8.1 (Berkeley) 6/10/93
- * $Id: if_llc.h,v 1.2 1994/08/02 07:46:16 davidg Exp $
+ * $Id: if_llc.h,v 1.3 1994/08/21 05:11:42 paul Exp $
*/
#ifndef _NET_IF_LLC_H_
@@ -41,7 +41,7 @@
* IEEE 802.2 Link Level Control headers, for use in conjunction with
* 802.{3,4,5} media access control methods.
*
- * Headers here do not use bit fields due to shortcommings in many
+ * Headers here do not use bit fields due to shortcomings in many
* compilers.
*/
diff --git a/sys/net/if_ppp.h b/sys/net/if_ppp.h
index e3fd618..1ea8c01 100644
--- a/sys/net/if_ppp.h
+++ b/sys/net/if_ppp.h
@@ -1,5 +1,5 @@
/* from Id: if_ppp.h,v 1.12 1995/04/24 02:40:23 paulus Exp */
-/* $Id$ */
+/* $Id: if_ppp.h,v 1.5 1995/10/31 20:24:10 peter Exp $ */
/*
* if_ppp.h - Point-to-Point Protocol definitions.
@@ -17,7 +17,7 @@
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef _IF_PPP_H_
@@ -61,8 +61,8 @@
*/
#define SC_TIMEOUT 0x00000400 /* timeout is currently pending */
#define SC_VJ_RESET 0x00000800 /* need to reset VJ decomp */
-#define SC_COMP_RUN 0x00001000 /* compressor has been inited */
-#define SC_DECOMP_RUN 0x00002000 /* decompressor has been inited */
+#define SC_COMP_RUN 0x00001000 /* compressor has been initiated */
+#define SC_DECOMP_RUN 0x00002000 /* decompressor has been initiated */
#define SC_DC_ERROR 0x00004000 /* non-fatal decomp error detected */
#define SC_DC_FERROR 0x00008000 /* fatal decomp error detected */
#define SC_TBUSY 0x10000000 /* xmitter doesn't need a packet yet */
diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h
index 2ac4d8d..4f3e3562 100644
--- a/sys/net/if_pppvar.h
+++ b/sys/net/if_pppvar.h
@@ -1,5 +1,5 @@
/* from Id: if_pppvar.h,v 1.1 1994/12/15 22:28:09 paulus Exp */
-/* $Id$ */
+/* $Id: if_pppvar.h,v 1.2 1995/10/31 20:24:11 peter Exp $ */
/*
* if_pppvar.h - private structures and declarations for PPP.
*
@@ -39,7 +39,7 @@
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h
index d6089e4..5a76ac0 100644
--- a/sys/net/if_slvar.h
+++ b/sys/net/if_slvar.h
@@ -32,7 +32,7 @@
*
* @(#)if_slvar.h 8.3 (Berkeley) 2/1/94
*
- * $Id: if_slvar.h,v 1.7 1995/08/30 00:33:21 bde Exp $
+ * $Id: if_slvar.h,v 1.8 1995/12/14 09:53:16 phk Exp $
*/
#ifndef _NET_IF_SLVAR_H_
@@ -54,7 +54,7 @@ struct sl_softc {
u_int sc_flags; /* see below */
u_int sc_escape; /* =1 if last char input was FRAME_ESCAPE */
long sc_lasttime; /* last time a char arrived */
- long sc_abortcount; /* number of abort esacpe chars */
+ long sc_abortcount; /* number of abort escape chars */
long sc_starttime; /* time of first abort in window */
u_int sc_keepalive; /* time to decide link hang */
u_int sc_outfill; /* time to send FRAME_END when output idle */
@@ -71,7 +71,7 @@ struct sl_softc {
/* visible flags */
#define SC_COMPRESS IFF_LINK0 /* compress TCP traffic */
-#define SC_NOICMP IFF_LINK1 /* supress ICMP traffic */
+#define SC_NOICMP IFF_LINK1 /* suppress ICMP traffic */
#define SC_AUTOCOMP IFF_LINK2 /* auto-enable TCP compression */
diff --git a/sys/net/if_sppp.h b/sys/net/if_sppp.h
index 95197d7..378fdd3 100644
--- a/sys/net/if_sppp.h
+++ b/sys/net/if_sppp.h
@@ -7,7 +7,7 @@
* This software is distributed with NO WARRANTIES, not even the implied
* warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * Authors grant any other persons or organisations permission to use
+ * Authors grant any other persons or organizations permission to use
* or modify this software as long as this message is kept with the software,
* all derivative works or modified versions.
*
diff --git a/sys/net/route.h b/sys/net/route.h
index 55b2738..e6e504a 100644
--- a/sys/net/route.h
+++ b/sys/net/route.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)route.h 8.3 (Berkeley) 4/19/94
- * $Id: route.h,v 1.18 1995/11/16 19:00:09 phk Exp $
+ * $Id: route.h,v 1.19 1995/12/14 09:53:28 phk Exp $
*/
#ifndef _NET_ROUTE_H_
@@ -63,8 +63,8 @@ struct rt_metrics {
u_long rmx_mtu; /* MTU for this path */
u_long rmx_hopcount; /* max hops expected */
u_long rmx_expire; /* lifetime for route, e.g. redirect */
- u_long rmx_recvpipe; /* inbound delay-bandwith product */
- u_long rmx_sendpipe; /* outbound delay-bandwith product */
+ u_long rmx_recvpipe; /* inbound delay-bandwidth product */
+ u_long rmx_sendpipe; /* outbound delay-bandwidth product */
u_long rmx_ssthresh; /* outbound gateway buffer limit */
u_long rmx_rtt; /* estimated round trip time */
u_long rmx_rttvar; /* estimated rtt variance */
diff --git a/sys/net/slcompress.h b/sys/net/slcompress.h
index f7230c5..2d52056 100644
--- a/sys/net/slcompress.h
+++ b/sys/net/slcompress.h
@@ -35,7 +35,7 @@
*
* Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989:
* - Initial distribution.
- * $Id: slcompress.h,v 1.7 1995/10/31 19:22:32 peter Exp $
+ * $Id: slcompress.h,v 1.8 1995/11/18 13:07:51 bde Exp $
*/
#ifndef _NET_SLCOMPRESS_H_
@@ -59,7 +59,7 @@
*
* There are 5 numbers which can change (they are always inserted
* in the following order): TCP urgent pointer, window,
- * acknowlegement, sequence number and IP ID. (The urgent pointer
+ * acknowledgement, sequence number and IP ID. (The urgent pointer
* is different from the others in that its value is sent, not the
* change in value.) Since typical use of SLIP links is biased
* toward small packets (see comments on MTU/MSS below), changes
OpenPOWER on IntegriCloud