diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-14 21:35:02 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-14 21:35:02 +0000 |
commit | 592b4684a393f187ed17f2dbde89e7e974b93bec (patch) | |
tree | 27021a1a3a7da6ee5ba8051ad9cddf8203ff8263 /sys/net | |
parent | 44ce7129fce40e129e05c87cdc90ad808c587ea4 (diff) |
spelling; from Brian Poole <raj@cerias.purdue.edu>
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pf.c | 6 | ||||
-rw-r--r-- | sys/net/slcompress.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index 811b2f7f914..b7c1ddba665 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.234 2002/06/11 02:42:27 frantzen Exp $ */ +/* $OpenBSD: pf.c,v 1.235 2002/06/14 21:35:00 todd Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -2799,7 +2799,7 @@ pf_test_state_tcp(struct pf_state **state, int direction, struct ifnet *ifp, /* update max window */ if (src->max_win < win) src->max_win = win; - /* syncronize sequencing */ + /* synchronize sequencing */ if (SEQ_GT(end, src->seqlo)) src->seqlo = end; /* slide the window of what the other end can send */ @@ -2889,7 +2889,7 @@ pf_test_state_tcp(struct pf_state **state, int direction, struct ifnet *ifp, /* update max window */ if (src->max_win < win) src->max_win = win; - /* syncronize sequencing */ + /* synchronize sequencing */ if (SEQ_GT(end, src->seqlo)) src->seqlo = end; /* slide the window of what the other end can send */ diff --git a/sys/net/slcompress.h b/sys/net/slcompress.h index 53dd58cab8d..5e5d0564111 100644 --- a/sys/net/slcompress.h +++ b/sys/net/slcompress.h @@ -1,4 +1,4 @@ -/* $OpenBSD: slcompress.h,v 1.5 2002/03/14 01:27:10 millert Exp $ */ +/* $OpenBSD: slcompress.h,v 1.6 2002/06/14 21:35:00 todd Exp $ */ /* $NetBSD: slcompress.h,v 1.11 1997/05/17 21:12:11 christos Exp $ */ /* @@ -64,7 +64,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 |