From a05abc17674c6b528caf3082680d45a5a63d734e Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Sun, 18 Jan 2009 00:50:21 +0000 Subject: [PATCH] spelling --- lib/isc/log.c | 4 ++-- lib/isc/radix.c | 4 ++-- lib/isc/rwlock.c | 4 ++-- lib/isc/sha2.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/isc/log.c b/lib/isc/log.c index 1c7ddace28..43ee80977d 100644 --- a/lib/isc/log.c +++ b/lib/isc/log.c @@ -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. diff --git a/lib/isc/radix.c b/lib/isc/radix.c index 5342934ca4..4d26bab0a3 100644 --- a/lib/isc/radix.c +++ b/lib/isc/radix.c @@ -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); diff --git a/lib/isc/rwlock.c b/lib/isc/rwlock.c index 69bb77f7c5..f4d1fc405c 100644 --- a/lib/isc/rwlock.c +++ b/lib/isc/rwlock.c @@ -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 /* Required for fprintf/stderr. */ -#include /* Requried for isc_thread_self(). */ +#include /* Required for isc_thread_self(). */ static void print_lock(const char *operation, isc_rwlock_t *rwl, isc_rwlocktype_t type) { diff --git a/lib/isc/sha2.c b/lib/isc/sha2.c index 2158ab0b69..eaacf33cc6 100644 --- a/lib/isc/sha2.c +++ b/lib/isc/sha2.c @@ -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: