]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix minor typos
authorMark Andrews <marka@isc.org>
Sun, 26 Feb 2006 23:06:40 +0000 (23:06 +0000)
committerMark Andrews <marka@isc.org>
Sun, 26 Feb 2006 23:06:40 +0000 (23:06 +0000)
CHANGES
bin/named/server.c
bin/tests/compress_test.c
bin/tests/rdata_test.c
bin/tests/system/dnssec/tests.sh
configure
configure.in
lib/bind/irs/irp.c
lib/dns/validator.c
libtool.m4

diff --git a/CHANGES b/CHANGES
index b8c9f28c59c02af522be9270b98e82c382b89ffd..905b3df3da258f5dd673312c1ddfcbfb0b27ee32 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 
 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 53327db80fb338a4d64d409a3a5b223c8be2f49e..df94ac0d3bd8aa211088acb5070810c37beae58e 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: server.c,v 1.339.2.15.2.67 2006/01/04 23:50:19 marka Exp $ */
+/* $Id: server.c,v 1.339.2.15.2.68 2006/02/26 23:03:52 marka Exp $ */
 
 #include <config.h>
 
@@ -566,7 +566,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 41df7ad08d5d8ba27275275d4f84c532cb41c6ce..877170e1c48b083f49c46fe200e4061d5874f296 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: compress_test.c,v 1.24.12.4 2004/03/08 04:04:25 marka Exp $ */
+/* $Id: compress_test.c,v 1.24.12.5 2006/02/26 23:03:52 marka Exp $ */
 
 #include <config.h>
 
@@ -131,7 +131,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 49a526f623c81e4cafb38b7c3b1db7c3cdc96a82..205ccc4388f3821ac16d8df4bb364a18459ee8df 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rdata_test.c,v 1.35.12.9 2005/03/17 03:58:28 marka Exp $ */
+/* $Id: rdata_test.c,v 1.35.12.10 2006/02/26 23:03:52 marka Exp $ */
 
 #include <config.h>
 
@@ -304,7 +304,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
@@ -561,7 +561,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 {
@@ -572,7 +572,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 79cd8c0851faeb1ca505ac76b45f6d857875481e..b98a812ffc40d993e316b160e8606f0295ced5ef 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.33.12.8 2005/09/06 02:12:40 marka Exp $
+# $Id: tests.sh,v 1.33.12.9 2006/02/26 23:03:52 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 91b48730db1152eeb75bc371a296ca06028952cb..c117ccc432640f01defd4b64cbc3243758a61b42 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.284.2.19.2.51 2006/02/02 23:13:05 marka Exp $
+# $Id: configure,v 1.284.2.19.2.52 2006/02/26 23:06:40 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.294.2.23.2.56 .
+# From configure.in Revision: 1.294.2.23.2.57 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59.
 #
@@ -12890,7 +12890,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
@@ -27076,7 +27076,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 f2ea3268addfe4ac4e3adf23ff90d2f59b328bab..fb8dc2d52b9e75e4218c07a6c33cb39097187395 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.294.2.23.2.56 $)
+AC_REVISION($Revision: 1.294.2.23.2.57 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.13)
@@ -1753,7 +1753,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 e5620db3e23f67144fe16bd71bc1605520bea9b0..892c336a941fb4304bd2db39d3e31354231c8589 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #if !defined(LINT) && !defined(CODECENTER)
-static const char rcsid[] = "$Id: irp.c,v 1.3.2.1.10.2 2004/03/17 01:49:41 marka Exp $";
+static const char rcsid[] = "$Id: irp.c,v 1.3.2.1.10.3 2006/02/26 23:03:52 marka Exp $";
 #endif
 
 /* Imports */
@@ -517,7 +517,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 0cdc513d36ee805791f247622749ec3393976567..ec727b71255a0018185bf263875f7a89c551327c 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: validator.c,v 1.91.2.5.8.26 2006/01/05 05:38:47 marka Exp $ */
+/* $Id: validator.c,v 1.91.2.5.8.27 2006/02/26 23:03:52 marka Exp $ */
 
 #include <config.h>
 
@@ -732,7 +732,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])