From: Mark Andrews Date: Sun, 26 Feb 2006 22:57:18 +0000 (+0000) Subject: fix minor typos X-Git-Tag: v9.4.0a4~44^2~21 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=95b484c9580d06eb2f9735a22e9841389c2859ba;p=thirdparty%2Fbind9.git fix minor typos --- diff --git a/CHANGES b/CHANGES index 77ed0de85e8..06a25e348e3 100644 --- a/CHANGES +++ b/CHANGES @@ -141,7 +141,7 @@ 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. @@ -1714,8 +1714,8 @@ 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 @@ -5964,7 +5964,7 @@ , , or . - 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 diff --git a/bin/named/server.c b/bin/named/server.c index 43ab0dcdf9f..a78b07951bf 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -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, diff --git a/bin/tests/compress_test.c b/bin/tests/compress_test.c index 3f1b4f4f7ec..587f66a625a 100644 --- a/bin/tests/compress_test.c +++ b/bin/tests/compress_test.c @@ -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); } diff --git a/bin/tests/rdata_test.c b/bin/tests/rdata_test.c index 37256dadde3..e95894e4e03 100644 --- a/bin/tests/rdata_test.c +++ b/bin/tests/rdata_test.c @@ -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 @@ -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 || diff --git a/bin/tests/system/dnssec/tests.sh b/bin/tests/system/dnssec/tests.sh index db78ff8c421..0a708e3fc56 100644 --- a/bin/tests/system/dnssec/tests.sh +++ b/bin/tests/system/dnssec/tests.sh @@ -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 diff --git a/configure b/configure index 4a12f43c4bd..ea0f9938df2 100755 --- 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 diff --git a/configure.in b/configure.in index 1920ccadbf9..fdc2d316fc4 100644 --- a/configure.in +++ b/configure.in @@ -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 diff --git a/doc/arm/Bv9ARM-book.xml b/doc/arm/Bv9ARM-book.xml index a2310f16ac9..8f44de9b726 100644 --- a/doc/arm/Bv9ARM-book.xml +++ b/doc/arm/Bv9ARM-book.xml @@ -18,7 +18,7 @@ - PERFORMANCE OF THIS SOFTWARE. --> - + BIND 9 Administrator Reference Manual @@ -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. The real parent servers for these zones should disable all diff --git a/lib/bind/configure b/lib/bind/configure index a9d0ab78d81..65bca20b04e 100644 --- a/lib/bind/configure +++ b/lib/bind/configure @@ -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 diff --git a/lib/bind/irs/irp.c b/lib/bind/irs/irp.c index 15eb261b055..e4915aebd3f 100644 --- a/lib/bind/irs/irp.c +++ b/lib/bind/irs/irp.c @@ -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: diff --git a/lib/dns/validator.c b/lib/dns/validator.c index f2ae4cfe6ad..d21abb5376a 100644 --- a/lib/dns/validator.c +++ b/lib/dns/validator.c @@ -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); } } diff --git a/libtool.m4 b/libtool.m4 index c3b71e89326..551ffd0d83e 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -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])