mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 10:32:13 -04:00
spelling
This commit is contained in:
parent
1016f2638f
commit
a05abc1767
4 changed files with 8 additions and 8 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: log.c,v 1.97 2009/01/06 23:47:57 tbox Exp $ */
|
||||
/* $Id: log.c,v 1.98 2009/01/18 00:41:42 fdupont Exp $ */
|
||||
|
||||
/*! \file
|
||||
* \author Principal Authors: DCL */
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
* This is the structure that holds each named channel. A simple linked
|
||||
* list chains all of the channels together, so an individual channel is
|
||||
* found by doing strcmp()s with the names down the list. Their should
|
||||
* be no peformance penalty from this as it is expected that the number
|
||||
* be no performance penalty from this as it is expected that the number
|
||||
* of named channels will be no more than a dozen or so, and name lookups
|
||||
* from the head of the list are only done when isc_log_usechannel() is
|
||||
* called, which should also be very infrequent.
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: radix.c,v 1.21 2008/12/01 00:04:21 marka Exp $ */
|
||||
/* $Id: radix.c,v 1.22 2009/01/18 00:46:01 fdupont Exp $ */
|
||||
|
||||
/*
|
||||
* This source was adapted from MRT's RCS Ids:
|
||||
|
|
@ -620,7 +620,7 @@ isc_radix_remove(isc_radix_tree_t *radix, isc_radix_node_t *node) {
|
|||
if (node->r && node->l) {
|
||||
/*
|
||||
* This might be a placeholder node -- have to check and
|
||||
* make sure there is a prefix aossciated with it!
|
||||
* make sure there is a prefix associated with it!
|
||||
*/
|
||||
if (node->prefix != NULL)
|
||||
_deref_prefix(radix->mctx, node->prefix);
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rwlock.c,v 1.44 2007/06/19 23:47:17 tbox Exp $ */
|
||||
/* $Id: rwlock.c,v 1.45 2009/01/18 00:48:30 fdupont Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
#ifdef ISC_RWLOCK_TRACE
|
||||
#include <stdio.h> /* Required for fprintf/stderr. */
|
||||
#include <isc/thread.h> /* Requried for isc_thread_self(). */
|
||||
#include <isc/thread.h> /* Required for isc_thread_self(). */
|
||||
|
||||
static void
|
||||
print_lock(const char *operation, isc_rwlock_t *rwl, isc_rwlocktype_t type) {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: sha2.c,v 1.13 2007/06/19 23:47:17 tbox Exp $ */
|
||||
/* $Id: sha2.c,v 1.14 2009/01/18 00:50:21 fdupont Exp $ */
|
||||
|
||||
/* $FreeBSD: src/sys/crypto/sha2/sha2.c,v 1.2.2.2 2002/03/05 08:36:47 ume Exp $ */
|
||||
/* $KAME: sha2.c,v 1.8 2001/11/08 01:07:52 itojun Exp $ */
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
* Please make sure that your system defines BYTE_ORDER. If your
|
||||
* architecture is little-endian, make sure it also defines
|
||||
* LITTLE_ENDIAN and that the two (BYTE_ORDER and LITTLE_ENDIAN) are
|
||||
* equivilent.
|
||||
* equivalent.
|
||||
*
|
||||
* If your system does not define the above, then you can do so by
|
||||
* hand like this:
|
||||
|
|
|
|||
Loading…
Reference in a new issue