]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix minor typos
authorMark Andrews <marka@isc.org>
Sun, 26 Feb 2006 22:57:18 +0000 (22:57 +0000)
committerMark Andrews <marka@isc.org>
Sun, 26 Feb 2006 22:57:18 +0000 (22:57 +0000)
12 files changed:
CHANGES
bin/named/server.c
bin/tests/compress_test.c
bin/tests/rdata_test.c
bin/tests/system/dnssec/tests.sh
configure
configure.in
doc/arm/Bv9ARM-book.xml
lib/bind/configure
lib/bind/irs/irp.c
lib/dns/validator.c
libtool.m4

diff --git a/CHANGES b/CHANGES
index 77ed0de85e8fea4e360e62073349581391c58cba..06a25e348e3fe11703d927b35354e6758a8b9b05 100644 (file)
--- a/CHANGES
+++ b/CHANGES
                        when using forwarders. [RT #15549]
 
 1945.  [cleanup]       dnssec-keygen: RSA (RSAMD5) is nolonger recommended.
-                       To generate a RSAMD5 key you must explictly request
+                       To generate a RSAMD5 key you must explicitly request
                        RSAMD5. [RT #13780]
                        
 1944.  [cleanup]       isc_hash_create() does not need a read/write lock.
 
 1414.  [func]          Support for KSK flag.
 
-1413.  [func]          Explictly request the (re-)generation of DS records from
-                       keysets (dnssec-signzone -g).
+1413.  [func]          Explicitly request the (re-)generation of DS records
+                       from keysets (dnssec-signzone -g).
 
 1412.  [func]          You can now specify servers to be tried if a nameserver
                        has IPv6 address and you only support IPv4 or the
                        <isc/bufferlist.h>, <isc/task.h>, <isc/mem.h> or
                        <isc/net.h>.
 
- 119.  [cleanup]       structure definitions for generic rdata stuctures do
+ 119.  [cleanup]       structure definitions for generic rdata structures do
                        not have _generic_ in their names.
 
  118.  [cleanup]       libdns.a is now namespace-clean, on NetBSD, excepting
index 43ab0dcdf9fd314369247f80d9ccfb5cbd736b04..a78b07951bf929689e077484c1e1eba43e4c8500 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: server.c,v 1.457 2006/02/21 23:12:27 marka Exp $ */
+/* $Id: server.c,v 1.458 2006/02/26 22:54:46 marka Exp $ */
 
 /*! \file */
 
@@ -622,7 +622,7 @@ configure_order(dns_order_t *order, cfg_obj_t *ent) {
        /*
         * "*" should match everything including the root (BIND 8 compat).
         * As dns_name_matcheswildcard(".", "*.") returns FALSE add a
-        * explict entry for "." when the name is "*".
+        * explicit entry for "." when the name is "*".
         */
        if (addroot) {
                result = dns_order_add(order, dns_rootname,
index 3f1b4f4f7ec59d668f14eb60e5a23669ed73b335..587f66a625ad49cdf17fd67e551f39c86275011b 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: compress_test.c,v 1.29 2005/04/29 00:22:38 marka Exp $ */
+/* $Id: compress_test.c,v 1.30 2006/02/26 22:54:46 marka Exp $ */
 
 /*! \file */
 
@@ -133,7 +133,7 @@ test(unsigned int allowed, dns_name_t *name1, dns_name_t *name2,
                case DNS_COMPRESS_NONE: s = "DNS_COMPRESS_NONE"; break;
                case DNS_COMPRESS_GLOBAL14: s = "DNS_COMPRESS_GLOBAL14"; break;
                /* case DNS_COMPRESS_ALL: s = "DNS_COMPRESS_ALL"; break; */
-               default: s = "UNKOWN"; break;
+               default: s = "UNKNOWN"; break;
                }
                fprintf(stdout, "Allowed = %s\n", s);
        }
index 37256dadde33df9e40de15721c9d48666e276059..e95894e4e0398c6e844fe7a7f49f3997055377a7 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rdata_test.c,v 1.44 2005/07/14 06:46:44 marka Exp $ */
+/* $Id: rdata_test.c,v 1.45 2006/02/26 22:54:46 marka Exp $ */
 
 #include <config.h>
 
@@ -309,7 +309,7 @@ viastruct(dns_rdata_t *rdata, isc_mem_t *mctx,
                break;
        }
        if (result != ISC_R_SUCCESS)
-               fprintf(stdout, "viastruct: tostuct %d %d return %s\n",
+               fprintf(stdout, "viastruct: tostruct %d %d return %s\n",
                        rdata->type, rdata->rdclass,
                        dns_result_totext(result));
        else
@@ -571,7 +571,7 @@ viastruct(dns_rdata_t *rdata, isc_mem_t *mctx,
                break;
        }
        if (result != ISC_R_SUCCESS)
-               fprintf(stdout, "viastruct: tostuct %d %d return %s\n",
+               fprintf(stdout, "viastruct: tostruct %d %d return %s\n",
                        rdata->type, rdata->rdclass,
                        dns_result_totext(result));
        else {
@@ -582,7 +582,7 @@ viastruct(dns_rdata_t *rdata, isc_mem_t *mctx,
                result = dns_rdata_fromstruct(rdata2, rdc, rdt, sp, b);
                if (result != ISC_R_SUCCESS)
                        fprintf(stdout,
-                               "viastruct: fromstuct %d %d return %s\n",
+                               "viastruct: fromstruct %d %d return %s\n",
                                rdata->type, rdata->rdclass,
                                dns_result_totext(result));
                else if (rdata->length != rdata2->length ||
index db78ff8c421aa05e96e5c7317a21532566b75159..0a708e3fc566b6bfda4780218fb9b909134736d8 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: tests.sh,v 1.47 2005/09/06 03:51:34 marka Exp $
+# $Id: tests.sh,v 1.48 2006/02/26 22:54:46 marka Exp $
 
 SYSTEMTESTTOP=..
 . $SYSTEMTESTTOP/conf.sh
@@ -428,7 +428,7 @@ n=`expr $n + 1`
 if [ $ret != 0 ]; then echo "I:failed"; fi
 status=`expr $status + $ret`
 
-echo "I:checking privately secure wilcard to nxdomain works ($n)"
+echo "I:checking privately secure wildcard to nxdomain works ($n)"
 ret=0
 $DIG $DIGOPTS +noauth a.wild.private.secure.example. SOA @10.53.0.2 \
        > dig.out.ns2.test$n || ret=1
index 4a12f43c4bd716af26c0577f8f14dc1661e39f54..ea0f9938df2f900ce1609c26bd7109f30fcc10f6 100755 (executable)
--- a/configure
+++ b/configure
@@ -14,7 +14,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 #
-# $Id: configure,v 1.389 2006/02/02 23:07:53 marka Exp $
+# $Id: configure,v 1.390 2006/02/26 22:57:17 marka Exp $
 #
 # Portions Copyright (C) 1996-2001  Nominum, Inc.
 #
@@ -29,7 +29,7 @@
 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-# From configure.in Revision: 1.401 .
+# From configure.in Revision: 1.402 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59.
 #
@@ -12919,7 +12919,7 @@ echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
 fi
 
 
-# Report which librarie types wil actually be built
+# Report which libraries types will actually be built
 echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
 echo "$as_me:$LINENO: result: $can_build_shared" >&5
@@ -27279,7 +27279,7 @@ fi
 esac
 
 #
-# Some hosts need msg_namelen to match the size of the socket stucture.
+# Some hosts need msg_namelen to match the size of the socket structure.
 # Some hosts don't set msg_namelen appropriately on return from recvmsg().
 #
 case $host in
index 1920ccadbf9cb4477a630cdce27d833cbfdb9832..fdc2d316fc4ffa7a0fedef4046600523763742d3 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.401 $)
+AC_REVISION($Revision: 1.402 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.59)
@@ -1781,7 +1781,7 @@ case "$host" in
 esac
 
 #
-# Some hosts need msg_namelen to match the size of the socket stucture.
+# Some hosts need msg_namelen to match the size of the socket structure.
 # Some hosts don't set msg_namelen appropriately on return from recvmsg().
 #
 case $host in
index a2310f16ac9046a6bc19d4b3f7f15949552737fb..8f44de9b7264ffe9bab6ea1c9b491fa2cd1c3a00 100644 (file)
@@ -18,7 +18,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- File: $Id: Bv9ARM-book.xml,v 1.295 2006/02/17 00:24:20 marka Exp $ -->
+<!-- File: $Id: Bv9ARM-book.xml,v 1.296 2006/02/26 22:54:46 marka Exp $ -->
 <book xmlns:xi="http://www.w3.org/2001/XInclude">
   <title>BIND 9 Administrator Reference Manual</title>
 
@@ -7269,10 +7269,10 @@ query-source-v6 address * port *;
            If you are using the address ranges covered here you should
            already have reverse zones covering the addresses you use.
            In practice this appears to not be the case with many queries
-           being made to the infrustucture servers for names in these
+           being made to the infrustructure servers for names in these
            spaces.  So many in fact that sacrificial servers were needed
            to be deployed to channel the query load away from the
-           infrustucture servers.
+           infrustructure servers.
          </para>
          <note>
            The real parent servers for these zones should disable all
index a9d0ab78d816bd527731d599e77978088351d4c4..65bca20b04e6e25856fb4f57e37f5a65c283f145 100644 (file)
@@ -12350,7 +12350,7 @@ echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
 fi
 
 
-# Report which librarie types wil actually be built
+# Report which libraries types will actually be built
 echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
 echo "$as_me:$LINENO: result: $can_build_shared" >&5
index 15eb261b0559fafe01b72a5d2d4da06d3073b89c..e4915aebd3f4741b4a4de4ada5e3dc8e48686fef 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #if !defined(LINT) && !defined(CODECENTER)
-static const char rcsid[] = "$Id: irp.c,v 1.7 2005/04/27 04:56:27 sra Exp $";
+static const char rcsid[] = "$Id: irp.c,v 1.8 2006/02/26 22:54:47 marka Exp $";
 #endif
 
 /* Imports */
@@ -504,7 +504,7 @@ irs_irp_get_full_response(struct irp_p *pvt, int *code, char *text,
  * int irs_irp_send_command(struct irp_p *pvt, const char *fmt, ...);
  *
  *     Sends command to remote connected via the PVT
- *     struture. FMT and args after it are fprintf-like
+ *     structure. FMT and args after it are fprintf-like
  *     arguments for formatting.
  *
  * Returns:
index f2ae4cfe6adba1a7fe83857446f1e99a1e33104e..d21abb5376a87e448e740ebfb6a0c4b2332136d1 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: validator.c,v 1.142 2006/02/22 01:55:10 marka Exp $ */
+/* $Id: validator.c,v 1.143 2006/02/26 22:54:47 marka Exp $ */
 
 /*! \file */
 
@@ -734,7 +734,7 @@ nsecnoexistnodata(dns_validator_t *val, dns_name_t* name, dns_name_t *nsecname,
                                               wild, NULL);
                if (result != ISC_R_SUCCESS) {
                        validator_log(val, ISC_LOG_DEBUG(3),
-                                   "failure generating wilcard name");
+                                   "failure generating wildcard name");
                        return (result);
                }
        }
index c3b71e8932670430f1e81defdbbe1d5cdec2ac3c..551ffd0d83eafaa6c326be7c85833b9321aece5f 100644 (file)
@@ -2557,7 +2557,7 @@ AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
 AC_LIBTOOL_SYS_LIB_STRIP
 AC_LIBTOOL_DLOPEN_SELF($1)
 
-# Report which librarie types wil actually be built
+# Report which libraries types will actually be built
 AC_MSG_CHECKING([if libtool supports shared libraries])
 AC_MSG_RESULT([$can_build_shared])