]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
spelling
authorFrancis Dupont <fdupont@isc.org>
Sat, 17 Jan 2009 14:18:27 +0000 (14:18 +0000)
committerFrancis Dupont <fdupont@isc.org>
Sat, 17 Jan 2009 14:18:27 +0000 (14:18 +0000)
lib/dns/acl.c
lib/dns/cache.c
lib/dns/dispatch.c
lib/dns/dlz.c

index 4c5909ffdbb251bd2c8efd963bf1d9ff8baa00ae..7f8240914d45e10059afaa806ccd60a2deb8dbf7 100644 (file)
@@ -15,7 +15,7 @@
  * 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 */
 
@@ -264,7 +264,7 @@ dns_acl_match(const isc_netaddr_t *reqaddr,
  * 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)
@@ -360,7 +360,7 @@ 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.
index aafef6ffb9b0c274a54de27ee766d41bb1204f2a..819133e7ec18480665d900f2efa03f2b0a9e9044 100644 (file)
@@ -15,7 +15,7 @@
  * 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 */
 
@@ -61,7 +61,7 @@
  ***/
 
 /*
- * A cache_cleaner_t encapsulsates the state of the periodic
+ * A cache_cleaner_t encapsulates the state of the periodic
  * cache cleaning.
  */
 
@@ -981,7 +981,7 @@ dns_cache_setcachesize(dns_cache_t *cache, isc_uint32_t size) {
        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)
index 793064f81787701545cd217cb8ca92d5ad7c2c66..21105f26485e4475983c4e2c232afc36e6c7a5fc 100644 (file)
@@ -15,7 +15,7 @@
  * 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 */
 
@@ -2419,7 +2419,7 @@ dispatch_allocate(dns_dispatchmgr_t *mgr, unsigned int maxrequests,
 
 
 /*
- * MUST be unlocked, and not used by anthing.
+ * MUST be unlocked, and not used by anything.
  */
 static void
 dispatch_free(dns_dispatch_t **dispp)
index 420eba323fc52d49dcb446368894391e8e23fb82..d1c8e9b3134e6eecf860a04c7b5dc39120de7166 100644 (file)
@@ -50,7 +50,7 @@
  * 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 */
 
@@ -275,7 +275,7 @@ dns_dlzfindzone(dns_view_t *view, dns_name_t *name, unsigned int minlabels,
         * 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.