]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
spelling
authorFrancis Dupont <fdupont@isc.org>
Sun, 18 Jan 2009 00:06:06 +0000 (00:06 +0000)
committerFrancis Dupont <fdupont@isc.org>
Sun, 18 Jan 2009 00:06:06 +0000 (00:06 +0000)
lib/isc/unix/ifiter_ioctl.c
lib/isc/unix/socket.c

index 773143708fa077ab0ac05eaa215f8bdbd1d1a038..a8d06c6824e03d0cb08cc5ef0be55689b1e95317 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: ifiter_ioctl.c,v 1.60 2008/03/20 23:47:00 tbox Exp $ */
+/* $Id: ifiter_ioctl.c,v 1.61 2009/01/18 00:01:26 fdupont Exp $ */
 
 /*! \file
  * \brief
@@ -122,7 +122,7 @@ getbuf4(isc_interfaceiter_t *iter) {
                iter->ifc.ifc_len = iter->bufsize;
                iter->ifc.ifc_buf = iter->buf;
                /*
-                * Ignore the HP/UX warning about "interger overflow during
+                * Ignore the HP/UX warning about "integer overflow during
                 * conversion".  It comes from its own macro definition,
                 * and is really hard to shut up.
                 */
@@ -202,7 +202,7 @@ getbuf6(isc_interfaceiter_t *iter) {
                iter->lifc.lifc_len = iter->bufsize6;
                iter->lifc.lifc_buf = iter->buf6;
                /*
-                * Ignore the HP/UX warning about "interger overflow during
+                * Ignore the HP/UX warning about "integer overflow during
                 * conversion".  It comes from its own macro definition,
                 * and is really hard to shut up.
                 */
@@ -496,7 +496,7 @@ internal_current4(isc_interfaceiter_t *iter) {
        iter->current.flags = 0;
 
        /*
-        * Ignore the HP/UX warning about "interger overflow during
+        * Ignore the HP/UX warning about "integer overflow during
         * conversion.  It comes from its own macro definition,
         * and is really hard to shut up.
         */
@@ -574,7 +574,7 @@ internal_current4(isc_interfaceiter_t *iter) {
         */
        if ((iter->current.flags & INTERFACE_F_POINTTOPOINT) != 0) {
                /*
-                * Ignore the HP/UX warning about "interger overflow during
+                * Ignore the HP/UX warning about "integer overflow during
                 * conversion.  It comes from its own macro definition,
                 * and is really hard to shut up.
                 */
@@ -601,7 +601,7 @@ internal_current4(isc_interfaceiter_t *iter) {
        memset(&ifreq, 0, sizeof(ifreq));
        memcpy(&ifreq, ifrp, sizeof(ifreq));
        /*
-        * Ignore the HP/UX warning about "interger overflow during
+        * Ignore the HP/UX warning about "integer overflow during
         * conversion.  It comes from its own macro definition,
         * and is really hard to shut up.
         */
@@ -684,7 +684,7 @@ internal_current6(isc_interfaceiter_t *iter) {
                fd = iter->socket;
 
        /*
-        * Ignore the HP/UX warning about "interger overflow during
+        * Ignore the HP/UX warning about "integer overflow during
         * conversion.  It comes from its own macro definition,
         * and is really hard to shut up.
         */
@@ -713,7 +713,7 @@ internal_current6(isc_interfaceiter_t *iter) {
         */
        if ((iter->current.flags & INTERFACE_F_POINTTOPOINT) != 0) {
                /*
-                * Ignore the HP/UX warning about "interger overflow during
+                * Ignore the HP/UX warning about "integer overflow during
                 * conversion.  It comes from its own macro definition,
                 * and is really hard to shut up.
                 */
@@ -763,7 +763,7 @@ internal_current6(isc_interfaceiter_t *iter) {
 #endif
 
        /*
-        * Ignore the HP/UX warning about "interger overflow during
+        * Ignore the HP/UX warning about "integer overflow during
         * conversion.  It comes from its own macro definition,
         * and is really hard to shut up.
         */
index f0ba7956cb98138432600c8bbea0ac684e1fb779..4120a65a603e03f1338c878e2389c39187b09cbd 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: socket.c,v 1.311 2008/12/03 02:11:32 marka Exp $ */
+/* $Id: socket.c,v 1.312 2009/01/18 00:06:06 fdupont Exp $ */
 
 /*! \file */
 
@@ -268,7 +268,7 @@ typedef isc_event_t intev_t;
 #endif
 
 /*%
- * The size to raise the recieve buffer to (from BIND 8).
+ * The size to raise the receive buffer to (from BIND 8).
  */
 #define RCVBUFSIZE (32*1024)
 
@@ -1129,7 +1129,7 @@ build_msghdr_send(isc_socket_t *sock, isc_socketevent_t *dev,
 
 /*
  * Construct an iov array and attach it to the msghdr passed in.  This is
- * the RECV constructor, which will use the avialable region of the buffer
+ * the RECV constructor, which will use the available region of the buffer
  * (if using a buffer list) or will use the internal region (if a single
  * buffer I/O is requested).
  *
@@ -2639,7 +2639,7 @@ internal_accept(isc_task_t *me, isc_event_t *ev) {
         * a documented error for accept().  ECONNABORTED has been
         * reported for Solaris 8.  The rest are thrown in not because
         * we have seen them but because they are ignored by other
-        * deamons such as BIND 8 and Apache.
+        * daemons such as BIND 8 and Apache.
         */
 
        addrlen = sizeof(dev->newsocket->peer_address.type);