* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: acl.c,v 1.51 2008/12/01 00:04:21 marka Exp $ */
+/* $Id: acl.c,v 1.52 2009/01/17 14:10:35 fdupont Exp $ */
/*! \file */
* If pos is set to false, then the nested ACL is to be negated. This
* means reverse the sense of each *positive* element or IP table node,
* but leave negatives alone, so as to prevent a double-negative causing
- * an unexpected postive match in the parent ACL.
+ * an unexpected positive match in the parent ACL.
*/
isc_result_t
dns_acl_merge(dns_acl_t *dest, dns_acl_t *source, isc_boolean_t pos)
* Like dns_acl_match, but matches against the single ACL element 'e'
* rather than a complete ACL, and returns ISC_TRUE iff it matched.
*
- * To determine whether the match was prositive or negative, the
+ * To determine whether the match was positive or negative, the
* caller should examine e->negative. Since the element 'e' may be
* a reference to a named ACL or a nested ACL, a matching element
* returned through 'matchelt' is not necessarily 'e' itself.
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: cache.c,v 1.82 2009/01/09 23:47:45 tbox Exp $ */
+/* $Id: cache.c,v 1.83 2009/01/17 14:13:42 fdupont Exp $ */
/*! \file */
***/
/*
- * A cache_cleaner_t encapsulsates the state of the periodic
+ * A cache_cleaner_t encapsulates the state of the periodic
* cache cleaning.
*/
REQUIRE(VALID_CACHE(cache));
/*
- * Impose a minumum cache size; pathological things happen if there
+ * Impose a minimum cache size; pathological things happen if there
* is too little room.
*/
if (size != 0 && size < DNS_CACHE_MINSIZE)
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: dispatch.c,v 1.157 2008/12/10 23:48:43 tbox Exp $ */
+/* $Id: dispatch.c,v 1.158 2009/01/17 14:17:17 fdupont Exp $ */
/*! \file */
/*
- * MUST be unlocked, and not used by anthing.
+ * MUST be unlocked, and not used by anything.
*/
static void
dispatch_free(dns_dispatch_t **dispp)
* USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: dlz.c,v 1.5 2007/06/19 23:47:16 tbox Exp $ */
+/* $Id: dlz.c,v 1.6 2009/01/17 14:18:27 fdupont Exp $ */
/*! \file */
* trying shorter names portions of the name until we find a
* match, have an error, or are below the 'minlabels'
* threshold. minlabels is 0, if the standard database didn't
- * have a zone name match. Otherwise minlables is the number
+ * have a zone name match. Otherwise minlabels is the number
* of labels in that name. We need to beat that for a
* "better" match for the DLZ database to be authoritative
* instead of the standard database.