diff options
author | 2013-01-17 00:48:04 +0000 | |
---|---|---|
committer | 2013-01-17 00:48:04 +0000 | |
commit | f8db2aa21459fb234673186b65bf4c7c9bcad7d3 (patch) | |
tree | f55d0cfe114bf22140238f3f383b35facdb624c5 | |
parent | fix an error in the amd64 asm unhibernate code and a slight adjustment to (diff) | |
download | wireguard-openbsd-f8db2aa21459fb234673186b65bf4c7c9bcad7d3.tar.xz wireguard-openbsd-f8db2aa21459fb234673186b65bf4c7c9bcad7d3.zip |
first or second coming, commie or not commie, one m in coming is sufficient
ok claudio
-rw-r--r-- | sys/dev/pci/if_oce.c | 6 | ||||
-rw-r--r-- | sys/net/if_gif.c | 4 | ||||
-rw-r--r-- | sys/net/if_llc.h | 4 | ||||
-rw-r--r-- | sys/net/pfvar.h | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/pci/if_oce.c b/sys/dev/pci/if_oce.c index 4a20d552883..b51d2d96002 100644 --- a/sys/dev/pci/if_oce.c +++ b/sys/dev/pci/if_oce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_oce.c,v 1.68 2012/12/10 17:36:10 mikeb Exp $ */ +/* $OpenBSD: if_oce.c,v 1.69 2013/01/17 00:48:04 henning Exp $ */ /* * Copyright (c) 2012 Mike Belopuhov @@ -3079,8 +3079,8 @@ oce_config_rss(struct oce_softc *sc, int enable) /* * Initialize the RSS CPU indirection table. * - * The table is used to choose the queue to place incomming packets. - * Incomming packets are hashed. The lowest bits in the hash result + * The table is used to choose the queue to place incoming packets. + * Incoming packets are hashed. The lowest bits in the hash result * are used as the index into the CPU indirection table. * Each entry in the table contains the RSS CPU-ID returned by the NIC * create. Based on the CPU ID, the receive completion is routed to diff --git a/sys/net/if_gif.c b/sys/net/if_gif.c index 3407d23591f..709cadb0a89 100644 --- a/sys/net/if_gif.c +++ b/sys/net/if_gif.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gif.c,v 1.58 2012/10/05 17:17:04 camield Exp $ */ +/* $OpenBSD: if_gif.c,v 1.59 2013/01/17 00:48:04 henning Exp $ */ /* $KAME: if_gif.c,v 1.43 2001/02/20 08:51:07 itojun Exp $ */ /* @@ -171,7 +171,7 @@ gif_start(struct ifnet *ifp) family = sc->gif_psrc->sa_family; /* - * Check if the packet is comming via bridge and needs + * Check if the packet is coming via bridge and needs * etherip encapsulation or not. bridge(4) directly calls * the start function and bypasses the if_output function * so we need to do the encap here. diff --git a/sys/net/if_llc.h b/sys/net/if_llc.h index 423ff8c84e3..3557c83c0b6 100644 --- a/sys/net/if_llc.h +++ b/sys/net/if_llc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_llc.h,v 1.7 2003/06/02 23:28:12 millert Exp $ */ +/* $OpenBSD: if_llc.h,v 1.8 2013/01/17 00:48:04 henning Exp $ */ /* $NetBSD: if_llc.h,v 1.6 1995/03/08 02:56:57 cgd Exp $ */ /* @@ -39,7 +39,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/pfvar.h b/sys/net/pfvar.h index 1be9b9f894f..38dddee4a6a 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.375 2012/12/29 14:53:06 markus Exp $ */ +/* $OpenBSD: pfvar.h,v 1.376 2013/01/17 00:48:04 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1237,7 +1237,7 @@ struct pf_pdesc { struct pf_addr nsaddr; /* src address after NAT */ struct pf_addr ndaddr; /* dst address after NAT */ - struct pfi_kif *kif; /* incomming interface */ + struct pfi_kif *kif; /* incoming interface */ struct mbuf *m; /* mbuf containing the packet */ struct ether_header *eh; diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 39651b9231c..c82d2e79e16 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.253 2012/07/16 18:05:36 markus Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.254 2013/01/17 00:48:04 henning Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -176,7 +176,7 @@ do { \ * Macro to compute ACK transmission behavior. Delay the ACK unless * we have already delayed an ACK (must send an ACK every two segments). * We also ACK immediately if we received a PUSH and the ACK-on-PUSH - * option is enabled or when the packet is comming from a loopback + * option is enabled or when the packet is coming from a loopback * interface. */ #define TCP_SETUP_ACK(tp, tiflags, m) \ |