]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
spelling arguement vs argument
authorMark Andrews <marka@isc.org>
Wed, 26 Oct 2005 04:59:20 +0000 (04:59 +0000)
committerMark Andrews <marka@isc.org>
Wed, 26 Oct 2005 04:59:20 +0000 (04:59 +0000)
CHANGES
README
bin/dig/dig.docbook
contrib/dlz/drivers/dlz_mysql_driver.c
contrib/dlz/drivers/dlz_odbc_driver.c
contrib/dlz/drivers/dlz_postgres_driver.c
lib/dns/include/dns/name.h
lib/dns/include/dns/zone.h
lib/isc/include/isc/mem.h
lib/isccfg/namedconf.c

diff --git a/CHANGES b/CHANGES
index 59817726eea5ff9c7c48b56e93ee8c273d7150c3..0edf4e6d9de38d9b1e0ef9dff2f4bdd3ed775834 100644 (file)
--- a/CHANGES
+++ b/CHANGES
                        call. [RT #14919]
 
 1876.  [func]          Additional memory debugging support to track size
-                       and mctx arguements. [RT #14814]
+                       and mctx arguments. [RT #14814]
 
 1875.  [bug]           process_dhtkey() was using the wrong memory context
                        to free some memory. [RT #14890]
diff --git a/README b/README
index d949e6e11abb9f4b14406e87feb1a965a8f304ac..0514c6add9594a44c668a797ed80a811a278c732 100644 (file)
--- a/README
+++ b/README
@@ -150,7 +150,7 @@ BIND 9.4.0
        Added framework for handling multiple EDNS versions.
 
        Additional memory debugging support to track size and mctx
-       arguements.
+       arguments.
 
        Detect duplicates of UDP queries we are recursing on and
        drop them.  New stats category "duplicates".
index 07a1028710cdb855a43dd116918ed63cfd5b3b75..5ee8831e6070df1ff4ba2caef2902581b56f48f4 100644 (file)
@@ -18,7 +18,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: dig.docbook,v 1.17.18.10 2005/09/09 06:22:05 marka Exp $ -->
+<!-- $Id: dig.docbook,v 1.17.18.11 2005/10/26 04:57:21 marka Exp $ -->
 <refentry id="man.dig">
 
   <refentryinfo>
     <para>
       The <option>-q</option> option sets the query name to 
       <parameter>name</parameter>.  This useful do distingish the
-      <parameter>name</parameter> from other arguements.
+      <parameter>name</parameter> from other arguments.
     </para>
 
     <para>
index 7a7867df3d51e572f8747ea0b2b83821c390d20e..24cd5ea503586574e2bf89d1b69d7abddc34ee44 100644 (file)
@@ -772,7 +772,7 @@ mysql_lookup(const char *zone, const char *name, void *driverarg,
 /*%
  * create an instance of the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement which is
+ * operating in.  This is done via use of the dbdata argument which is
  * passed into all query functions.
  */
 static isc_result_t
@@ -968,7 +968,7 @@ mysql_create(const char *dlzname, unsigned int argc, char *argv[],
 /*%
  * destroy the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement.
+ * operating in.  This is done via use of the dbdata argument.
  * so we really only need to clean it up since we are not using driverarg.
  */
 
index b0ba115495cfed4669320f658b67b083ae1b355b..eb088a213238a123a03eee820267af4632fcb211 100644 (file)
@@ -1244,7 +1244,7 @@ odbc_lookup(const char *zone, const char *name, void *driverarg,
 /*%
  * create an instance of the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement which is
+ * operating in.  This is done via use of the dbdata argument which is
  * passed into all query functions.
  */
 static isc_result_t
@@ -1483,7 +1483,7 @@ odbc_create(const char *dlzname, unsigned int argc, char *argv[],
 /*%
  * destroy an instance of the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement.
+ * operating in.  This is done via use of the dbdata argument.
  * so we really only need to clean it up since we are not using driverarg.
  */
 
index 7f3b2920f66d6553d59bd6da0149be94a42ee162..8f6c00a84a3455f6c42624e7470917519f1b4847 100644 (file)
@@ -1015,7 +1015,7 @@ postgres_lookup(const char *zone, const char *name, void *driverarg,
 /*%
  * create an instance of the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement which is
+ * operating in.  This is done via use of the dbdata argument which is
  * passed into all query functions.
  */
 static isc_result_t
@@ -1239,7 +1239,7 @@ postgres_create(const char *dlzname, unsigned int argc, char *argv[],
 /*%
  * destroy an instance of the driver.  Remember, only 1 copy of the driver's
  * code is ever loaded, the driver has to remember which context it's
- * operating in.  This is done via use of the dbdata arguement.
+ * operating in.  This is done via use of the dbdata argument.
  * so we really only need to clean it up since we are not using driverarg.
  */
 static void
index a19091091e1fcb751b460c3fd51710d362640db9..59d89f3914e2d656a829bf282d47a96e20b9ff88 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: name.h,v 1.107.18.12 2005/09/18 07:58:07 marka Exp $ */
+/* $Id: name.h,v 1.107.18.13 2005/10/26 04:57:24 marka Exp $ */
 
 #ifndef DNS_NAME_H
 #define DNS_NAME_H 1
@@ -1212,7 +1212,7 @@ dns_name_destroy(void);
  *
  * Note: dns_name_settotextfilter(NULL); should be called for all
  * threads which have called dns_name_settotextfilter() with a
- * non-NULL arguement prior to calling dns_name_destroy();
+ * non-NULL argument prior to calling dns_name_destroy();
  */
 
 ISC_LANG_ENDDECLS
index eeb87baf555dc7052ed867f70a301d7d4b8b2e66..6a2c0148d04b0a774852750f9fad558c363f2bcf 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.h,v 1.126.18.11 2005/08/25 00:05:46 marka Exp $ */
+/* $Id: zone.h,v 1.126.18.12 2005/10/26 04:57:24 marka Exp $ */
 
 #ifndef DNS_ZONE_H
 #define DNS_ZONE_H 1
@@ -1527,7 +1527,7 @@ dns_zone_getnotifydelay(dns_zone_t *zone);
 void
 dns_zone_setisself(dns_zone_t *zone, dns_isselffunc_t isself, void *arg);
 /*
- * Set the isself callback function and arguement.
+ * Set the isself callback function and argument.
  *
  * isc_boolean_t
  * isself(dns_view_t *myview, dns_tsigkey_t *mykey, isc_netaddr_t *srcaddr,
index 71cfaabfc72e5f26ecbe8094938c8fdba03700f8..5fdc4aa6be5a0b0345a1877590db3779a69326b2 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mem.h,v 1.59.18.6 2005/06/17 02:27:15 marka Exp $ */
+/* $Id: mem.h,v 1.59.18.7 2005/10/26 04:57:25 marka Exp $ */
 
 #ifndef ISC_MEM_H
 #define ISC_MEM_H 1
@@ -109,11 +109,11 @@ LIBISC_EXTERNAL_DATA extern unsigned int isc_mem_debugging;
  *     every time it is raised once it exceeds the hi_water mark.
  *
  * \li #ISC_MEM_DEBUGSIZE
- *     Check the size arguement being passed to isc_mem_put() matches
+ *     Check the size argument being passed to isc_mem_put() matches
  *     that passed to isc_mem_get().
  *
  * \li #ISC_MEM_DEBUGCTX
- *     Check the mctx arguement being passed to isc_mem_put() matches
+ *     Check the mctx argument being passed to isc_mem_put() matches
  *     that passed to isc_mem_get().
  */
 /*@}*/
index 211c3afb2399cb49bcfcc2a228f10cdc82a8981b..57ae1f3143792850286339cd9db1d489117aee74 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: namedconf.c,v 1.30.18.26 2005/09/05 00:18:31 marka Exp $ */
+/* $Id: namedconf.c,v 1.30.18.27 2005/10/26 04:57:25 marka Exp $ */
 
 /*! \file */
 
@@ -510,7 +510,7 @@ static cfg_type_t cfg_type_hostname = {
 };
 
 /*%
- * "server-id" arguement.
+ * "server-id" argument.
  */
 
 static isc_result_t