After typing 'transferring' wrong one time too many...

I didn't touch gcc, binutils, bind, lynx, kerberos, openssl or perl on
purpose.

Index: lib/libsndio/sio_sun.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/lib/libsndio/sio_sun.c,v
retrieving revision 1.4
diff -u -p -r1.4 sio_sun.c
--- lib/libsndio/sio_sun.c      15 Nov 2011 08:05:22 -0000      1.4
+++ lib/libsndio/sio_sun.c      7 Jan 2012 14:11:33 -0000
@@ -48,7 +48,7 @@ struct sio_sun_hdl {
        int fd;
        int filling;
        unsigned ibpf, obpf;            /* bytes per frame */
-       unsigned ibytes, obytes;        /* bytes the hw transfered */
+       unsigned ibytes, obytes;        /* bytes the hw transferred */
        unsigned ierr, oerr;            /* frames the hw dropped */
        int offset;                     /* frames play is ahead of record */
        int idelta, odelta;             /* position reported to client */
Index: sys/arch/macppc/dev/tpms.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/arch/macppc/dev/tpms.c,v
retrieving revision 1.15
diff -u -p -r1.15 tpms.c
--- sys/arch/macppc/dev/tpms.c  9 Apr 2010 17:01:30 -0000       1.15
+++ sys/arch/macppc/dev/tpms.c  7 Jan 2012 14:11:45 -0000
@@ -128,7 +128,7 @@
  * Magic numbers.
  */
 
-/* The amount of data transfered by the USB device. */
+/* The amount of data transferred by the USB device. */
 #define TPMS_DATA_LEN 81
 
 /* The maximum number of sensors. */
Index: sys/arch/vax/dec/sii.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/arch/vax/dec/sii.c,v
retrieving revision 1.13
diff -u -p -r1.13 sii.c
--- sys/arch/vax/dec/sii.c      17 Jul 2011 22:46:47 -0000      1.13
+++ sys/arch/vax/dec/sii.c      7 Jan 2012 14:11:51 -0000
@@ -645,7 +645,7 @@ again:
                        printf("%s: Parity error\n", sc->sc_dev.dv_xname);
                        goto abort;
                }
-               /* dmalen = amount left to transfer, i = amount transfered */
+               /* dmalen = amount left to transfer, i = amount transferred */
                i = state->dmalen;
                state->dmalen = 0;
                state->dmaCurPhase = -1;
@@ -899,7 +899,7 @@ again:
 #endif
                        }
 
-                       /* read amount transfered if DMA didn't finish */
+                       /* read amount transferred if DMA didn't finish */
                        if (state->dmalen > 0) {
                                i = state->dmalen - regs->dmlotc;
                                state->dmalen = 0;
Index: sys/dev/ata/wdvar.h
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ata/wdvar.h,v
retrieving revision 1.18
diff -u -p -r1.18 wdvar.h
--- sys/dev/ata/wdvar.h 22 Sep 2011 22:12:45 -0000      1.18
+++ sys/dev/ata/wdvar.h 7 Jan 2012 14:11:57 -0000
@@ -44,8 +44,8 @@ struct ata_bio {
     struct disklabel *lp; /* pointer to drive's label info */
     daddr64_t blkno; /* block addr */
     daddr64_t blkdone; /* number of blks transferred */
-    daddr64_t nblks; /* number of block currently transfering */
-    int     nbytes; /* number of bytes currently transfering */
+    daddr64_t nblks; /* number of block currently transferring */
+    int     nbytes; /* number of bytes currently transferring */
     long    bcount; /* total number of bytes */
     char   *databuf; /* data buffer address */
     volatile int error;
Index: sys/dev/ic/aic79xx.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/aic79xx.c,v
retrieving revision 1.48
diff -u -p -r1.48 aic79xx.c
--- sys/dev/ic/aic79xx.c        19 Apr 2011 21:59:51 -0000      1.48
+++ sys/dev/ic/aic79xx.c        7 Jan 2012 14:11:57 -0000
@@ -1225,7 +1225,7 @@ ahd_handle_seqint(struct ahd_softc *ahd,
                 * that requires host assistance for completion.
                 * While handling the message phase(s), we will be
                 * notified by the sequencer after each byte is
-                * transfered so we can track bus phase changes.
+                * transferred so we can track bus phase changes.
                 *
                 * If this is the first time we've seen a HOST_MSG_LOOP
                 * interrupt, initialize the state of the host message
Index: sys/dev/ic/aic79xx.h
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/aic79xx.h,v
retrieving revision 1.21
diff -u -p -r1.21 aic79xx.h
--- sys/dev/ic/aic79xx.h        21 Dec 2006 02:28:47 -0000      1.21
+++ sys/dev/ic/aic79xx.h        7 Jan 2012 14:11:57 -0000
@@ -519,7 +519,7 @@ struct hardware_scb {
  *     o A residual has occurred if SG_FULL_RESID is set in sgptr,
  *       or residual_sgptr does not have SG_LIST_NULL set.
  *
- *     o We are transfering the last segment if residual_datacnt has
+ *     o We are transferring the last segment if residual_datacnt has
  *       the SG_LAST_SEG flag set.
  *
  * Host:
@@ -562,7 +562,7 @@ struct hardware_scb {
  */
 
 /*
- * Definition of a scatter/gather element as transfered to the controller.
+ * Definition of a scatter/gather element as transferred to the controller.
  * The aic7xxx chips only support a 24bit length.  We use the top byte of
  * the length to store additional address bits and a flag to indicate
  * that a given segment terminates the transfer.  This gives us an
Index: sys/dev/ic/aic79xx_openbsd.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/aic79xx_openbsd.c,v
retrieving revision 1.37
diff -u -p -r1.37 aic79xx_openbsd.c
--- sys/dev/ic/aic79xx_openbsd.c        28 Jun 2010 18:31:02 -0000      1.37
+++ sys/dev/ic/aic79xx_openbsd.c        7 Jan 2012 14:11:57 -0000
@@ -237,7 +237,7 @@ ahd_done(struct ahd_softc *ahd, struct s
                 *
                 * Zero any sense not transferred by the
                 * device.  The SCSI spec mandates that any
-                * untransfered data should be assumed to be
+                * untransferred data should be assumed to be
                 * zero.  Complete the 'bounce' of sense information
                 * through buffers accessible via bus-space by
                 * copying it into the clients csio.
Index: sys/dev/ic/aic7xxxvar.h
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/aic7xxxvar.h,v
retrieving revision 1.24
diff -u -p -r1.24 aic7xxxvar.h
--- sys/dev/ic/aic7xxxvar.h     4 Aug 2007 14:37:34 -0000       1.24
+++ sys/dev/ic/aic7xxxvar.h     7 Jan 2012 14:11:57 -0000
@@ -459,7 +459,7 @@ struct hardware_scb {
  *     o A residual has occurred if SG_FULL_RESID is set in sgptr,
  *       or residual_sgptr does not have SG_LIST_NULL set.
  *
- *     o We are transfering the last segment if residual_datacnt has
+ *     o We are transferring the last segment if residual_datacnt has
  *       the SG_LAST_SEG flag set.
  *
  * Host:
Index: sys/dev/ic/siop_common.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/siop_common.c,v
retrieving revision 1.34
diff -u -p -r1.34 siop_common.c
--- sys/dev/ic/siop_common.c    23 Jul 2010 07:47:13 -0000      1.34
+++ sys/dev/ic/siop_common.c    7 Jan 2012 14:11:58 -0000
@@ -805,24 +805,24 @@ siop_sdp(siop_cmd, offset)
 #endif
        /*
         * Save data pointer. We do this by adjusting the tables to point
-        * at the beginning of the data not yet transfered. 
-        * offset points to the first table with untransfered data.
+        * at the beginning of the data not yet transferred.
+        * offset points to the first table with untransferred data.
         */
 
        /*
         * before doing that we decrease resid from the amount of data which
-        * has been transfered.
+        * has been transferred.
         */
        siop_update_resid(siop_cmd, offset);
 
        /*
         * First let see if we have a resid from a phase mismatch. If so,
-        * we have to adjst the table at offset to remove transfered data.
+        * we have to adjst the table at offset to remove transferred data.
         */
        if (siop_cmd->flags & CMDFL_RESID) {
                siop_cmd->flags &= ~CMDFL_RESID;
                table = &siop_cmd->siop_tables->data[offset];
-               /* "cut" already transfered data from this table */
+               /* "cut" already transferred data from this table */
                table->addr =
                    siop_htoc32(sc, siop_ctoh32(sc, table->addr) +
                    siop_ctoh32(sc, table->count) - siop_cmd->resid);
@@ -830,7 +830,7 @@ siop_sdp(siop_cmd, offset)
        }
 
        /*
-        * now we can remove entries which have been transfered.
+        * now we can remove entries which have been transferred.
         * We just move the entries with data left at the beginning of the
         * tables
         */
Index: sys/dev/ic/xl.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/ic/xl.c,v
retrieving revision 1.104
diff -u -p -r1.104 xl.c
--- sys/dev/ic/xl.c     14 Jul 2011 16:38:27 -0000      1.104
+++ sys/dev/ic/xl.c     7 Jan 2012 14:11:58 -0000
@@ -77,7 +77,7 @@
  */
 
 /*
- * The 3c90x series chips use a bus-master DMA interface for transfering
+ * The 3c90x series chips use a bus-master DMA interface for transferring
  * packets to and from the controller chip. Some of the "vortex" cards
  * (3c59x) also supported a bus master mode, however for those chips
  * you could only DMA packets to/from a contiguous memory buffer. For
Index: sys/dev/pci/if_sk.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/pci/if_sk.c,v
retrieving revision 1.160
diff -u -p -r1.160 if_sk.c
--- sys/dev/pci/if_sk.c 22 Jun 2011 16:44:27 -0000      1.160
+++ sys/dev/pci/if_sk.c 7 Jan 2012 14:12:00 -0000
@@ -2302,7 +2302,7 @@ sk_init_xmac(struct sk_if_softc   *sc_if)
         * that jumbo frames larger than 8192 bytes will be
         * truncated. Disabling all bad frame filtering causes
         * the RX FIFO to operate in streaming mode, in which
-        * case the XMAC will start transfering frames out of the
+        * case the XMAC will start transferring frames out of the
         * RX FIFO as soon as the FIFO threshold is reached.
         */
        SK_XM_SETBIT_4(sc_if, XM_MODE, XM_MODE_RX_BADFRAMES|
Index: sys/dev/usb/if_atu.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/usb/if_atu.c,v
retrieving revision 1.100
diff -u -p -r1.100 if_atu.c
--- sys/dev/usb/if_atu.c        18 Sep 2011 23:24:12 -0000      1.100
+++ sys/dev/usb/if_atu.c        7 Jan 2012 14:12:01 -0000
@@ -339,7 +339,7 @@ atu_usb_request(struct atu_softc *sc, u_
 #ifdef ATU_DEBUG
        if (atudebug) {
                if (type & UT_READ) {
-                       DPRINTFN(20, ("%s: transfered 0x%x bytes in\n",
+                       DPRINTFN(20, ("%s: transferred 0x%x bytes in\n",
                            sc->atu_dev.dv_xname, total_len));
                        DPRINTFN(20, ("%s: dump [%10D]\n",
                            sc->atu_dev.dv_xname, data, " "));
Index: sys/dev/usb/uvisor.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/dev/usb/uvisor.c,v
retrieving revision 1.44
diff -u -p -r1.44 uvisor.c
--- sys/dev/usb/uvisor.c        3 Jul 2011 15:47:18 -0000       1.44
+++ sys/dev/usb/uvisor.c        7 Jan 2012 14:12:02 -0000
@@ -66,7 +66,7 @@ int uvisordebug = 0;
 /* From the Linux driver */
 /*
  * UVISOR_REQUEST_BYTES_AVAILABLE asks the visor for the number of bytes that
- * are available to be transfered to the host for the specified endpoint.
+ * are available to be transferred to the host for the specified endpoint.
  * Currently this is not used, and always returns 0x0001
  */
 #define UVISOR_REQUEST_BYTES_AVAILABLE         0x01
Index: sys/netinet/tcp_usrreq.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/sys/netinet/tcp_usrreq.c,v
retrieving revision 1.109
diff -u -p -r1.109 tcp_usrreq.c
--- sys/netinet/tcp_usrreq.c    3 Jan 2012 21:50:12 -0000       1.109
+++ sys/netinet/tcp_usrreq.c    7 Jan 2012 14:12:09 -0000
@@ -997,9 +997,9 @@ tcp_update_sndspace(struct tcpcb *tp)
 }
 
 /*
- * Scale the recv buffer by looking at how much data was transfered in
+ * Scale the recv buffer by looking at how much data was transferred in
  * on approximated RTT. If more then a big part of the recv buffer was
- * transfered during that time we increase the buffer by a constant.
+ * transferred during that time we increase the buffer by a constant.
  * In low memory situation try to shrink the buffer to the initial size.
  */
 void
Index: usr.bin/oldrdist/main.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/usr.bin/oldrdist/main.c,v
retrieving revision 1.21
diff -u -p -r1.21 main.c
--- usr.bin/oldrdist/main.c     27 Oct 2009 23:59:41 -0000      1.21
+++ usr.bin/oldrdist/main.c     7 Jan 2012 14:12:13 -0000
@@ -48,7 +48,7 @@ int   debug;          /* debugging flag */
 int    nflag;          /* NOP flag, just print commands without executing */
 int    qflag;          /* Quiet. Don't print messages */
 int    options;        /* global options */
-int    iamremote;      /* act as remote server for transfering files */
+int    iamremote;      /* act as remote server for transferring files */
 
 FILE   *fin = NULL;    /* input file pointer */
 int    rem = -1;       /* file descriptor to remote source/sink process */
Index: usr.sbin/amd/amd/info_hes.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/usr.sbin/amd/amd/info_hes.c,v
retrieving revision 1.12
diff -u -p -r1.12 info_hes.c
--- usr.sbin/amd/amd/info_hes.c 2 Jun 2003 23:36:51 -0000       1.12
+++ usr.sbin/amd/amd/info_hes.c 7 Jan 2012 14:12:16 -0000
@@ -308,8 +308,8 @@ hs_res_send(char *buf, int buflen, char 
                                }
                        }
                        if (status == -2) {
-                               /* There was a permanent error transfering this
-                                  zone.  Give up. */
+                               /* There was a permanent error transferring
+                                * this zone.  Give up. */
                                if (s != -1) {
                                        (void) close(s);
                                        s = -1;
Index: usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html
===================================================================
RCS file: 
/home/vcs/cvs/openbsd/src/usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html,v
retrieving revision 1.13
diff -u -p -r1.13 mod_rewrite.html
--- usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html   29 Jul 2005 23:55:40 
-0000      1.13
+++ usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html   7 Jan 2012 14:12:18 
-0000
@@ -326,7 +326,7 @@
       <code>%N</code> (see below). These are available for creating
       the strings <em>Substitution</em> and <em>TestString</em>.
       Figure 2 shows to which locations the back-references are
-      transfered for expansion. 
+      transferred for expansion.
 
       <div align="CENTER">
         <table cellspacing="0" cellpadding="2" border="0">
Index: usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html
===================================================================
RCS file: 
/home/vcs/cvs/openbsd/src/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html,v
retrieving revision 1.12
diff -u -p -r1.12 ssl_faq.html
--- usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html       18 Jun 2008 
05:42:29 -0000      1.12
+++ usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html       7 Jan 2012 
14:12:18 -0000
@@ -1247,7 +1247,7 @@ Why has my webserver a higher load now t
     <p>
     Because SSL uses strong cryptographic encryption and this needs a lot of
     number crunching. And because when you request a webpage via HTTPS even
-    the images are transfered encrypted. So, when you have a lot of HTTPS
+    the images are transferred encrypted. So, when you have a lot of HTTPS
     traffic the load increases.
 <p>
 <li><a name="ToC43"></a>
Index: usr.sbin/npppd/common/bytebuf.c
===================================================================
RCS file: /home/vcs/cvs/openbsd/src/usr.sbin/npppd/common/bytebuf.c,v
retrieving revision 1.3
diff -u -p -r1.3 bytebuf.c
--- usr.sbin/npppd/common/bytebuf.c     2 Jul 2010 21:20:57 -0000       1.3
+++ usr.sbin/npppd/common/bytebuf.c     7 Jan 2012 14:12:19 -0000
@@ -268,7 +268,7 @@ bytebuffer_put(bytebuffer *_this, const 
  * and <code>errno</code> is <code>ENOBUFS</code>
  *
  * @param      dst     pointer of the destination memory.  Specify NULL
- *                     to skip transfering the data.
+ *                     to skip transferring the data.
  * @param      dstlne  memory size of the destination.
  */
 void *

Reply via email to