mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 08:05:21 +00:00
fix minor typos
This commit is contained in:
8
CHANGES
8
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 @@
|
||||
<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
|
||||
|
@@ -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,
|
||||
|
@@ -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);
|
||||
}
|
||||
|
@@ -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 ||
|
||||
|
@@ -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
|
||||
|
8
configure
vendored
8
configure
vendored
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
2
lib/bind/configure
vendored
2
lib/bind/configure
vendored
@@ -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
|
||||
|
@@ -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:
|
||||
|
@@ -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);
|
||||
}
|
||||
}
|
||||
|
2
libtool.m4
vendored
2
libtool.m4
vendored
@@ -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])
|
||||
|
||||
|
Reference in New Issue
Block a user