summaryrefslogtreecommitdiff
path: root/sys/net/pf_norm.c
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-08-22 21:50:35 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-08-22 21:50:35 +0000
commitbdee604205b7485ae7e9cb0b6d1aa2e2553297a9 (patch)
tree90db82ccfd6991f5ec8558150130e86480f41ce6 /sys/net/pf_norm.c
parent97012dcf81eb4cd9173c8a9e3e6d24d264b70bd2 (diff)
pf spelling police
ok dhartmei@ jmc@
Diffstat (limited to 'sys/net/pf_norm.c')
-rw-r--r--sys/net/pf_norm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net/pf_norm.c b/sys/net/pf_norm.c
index fdee9ba6dca..f0e16176bbd 100644
--- a/sys/net/pf_norm.c
+++ b/sys/net/pf_norm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf_norm.c,v 1.73 2003/08/22 15:19:23 henning Exp $ */
+/* $OpenBSD: pf_norm.c,v 1.74 2003/08/22 21:50:34 david Exp $ */
/*
* Copyright 2001 Niels Provos <provos@citi.umich.edu>
@@ -605,7 +605,7 @@ pf_fragcache(struct mbuf **m0, struct ip *h, struct pf_fragment *frag, int mff,
off += precut;
max -= precut;
- /* Update the previous frag to encompas this one */
+ /* Update the previous frag to encompass this one */
frp->fr_end = max;
if (!drop) {
@@ -712,7 +712,7 @@ pf_fragcache(struct mbuf **m0, struct ip *h, struct pf_fragment *frag, int mff,
}
- /* Need to glue together two seperate fragment descriptors */
+ /* Need to glue together two separate fragment descriptors */
if (merge) {
if (cur && fra->fr_off <= cur->fr_end) {
/* Need to merge in a previous 'cur' */
@@ -995,7 +995,7 @@ pf_normalize_ip(struct mbuf **m0, int dir, struct ifnet *ifp, u_short *reason)
bad:
DPFPRINTF(("dropping bad fragment\n"));
- /* Free assoicated fragments */
+ /* Free associated fragments */
if (frag != NULL)
pf_free_fragment(frag);
@@ -1338,7 +1338,7 @@ pf_normalize_tcp_init(struct mbuf *m, int off, struct pf_pdesc *pd,
hlen = (th->th_off << 2) - sizeof(struct tcphdr);
while (hlen >= TCPOLEN_TIMESTAMP) {
switch (*opt) {
- case TCPOPT_EOL: /* FALLTHROUH */
+ case TCPOPT_EOL: /* FALLTHROUGH */
case TCPOPT_NOP:
opt++;
hlen--;
@@ -1423,7 +1423,7 @@ pf_normalize_tcp_stateful(struct mbuf *m, int off, struct pf_pdesc *pd,
hlen = (th->th_off << 2) - sizeof(struct tcphdr);
while (hlen >= TCPOLEN_TIMESTAMP) {
switch (*opt) {
- case TCPOPT_EOL: /* FALLTHROUH */
+ case TCPOPT_EOL: /* FALLTHROUGH */
case TCPOPT_NOP:
opt++;
hlen--;