enough to hold any legal domain name in presentation
format + terminating NULL.
- 301. [bug] Uninitalised pointer in host:printmessage(). [RT #159]
+ 301. [bug] Uninitialized pointer in host:printmessage(). [RT #159]
300. [bug] Using both <isc/net.h> and <lwres/net.h> didn't work
on platforms lacking IPv6 because each included their
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zoneconf.h,v 1.16 2001/03/04 21:21:39 bwelling Exp $ */
+/* $Id: zoneconf.h,v 1.17 2002/02/20 01:43:55 gson Exp $ */
#ifndef NS_ZONECONF_H
#define NS_ZONECONF_H 1
* at zone creation time.
*
* Require:
- * 'lctx' to be initalised or NULL.
- * 'cctx' to be initalised or NULL.
+ * 'lctx' to be initialized or NULL.
+ * 'cctx' to be initialized or NULL.
* 'ac' to point to an initialized ns_aclconfctx_t.
- * 'czone' to be initalised.
- * 'zone' to be initalised.
+ * 'czone' to be initialized.
+ * 'zone' to be initialized.
*/
isc_boolean_t
- WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-->
-<!-- $Id: coding.html,v 1.16 2001/11/30 01:59:01 gson Exp $ -->
+<!-- $Id: coding.html,v 1.17 2002/02/20 01:43:57 gson Exp $ -->
<H2>C Language</H2>
<PRE><CODE>
char *text;
- /* text is initalized here. */
+ /* text is initialized here. */
free(text);
text = NULL;
#ifndef LINT
-static const char rcsid[] = "$Header: /u0/home/explorer/proj/ISC/git-conversion/cvsroot/bind9/lib/bind/dst/Attic/dst_api.c,v 1.9 2001/11/02 22:31:38 gson Exp $";
+static const char rcsid[] = "$Header: /u0/home/explorer/proj/ISC/git-conversion/cvsroot/bind9/lib/bind/dst/Attic/dst_api.c,v 1.10 2002/02/20 01:43:59 gson Exp $";
#endif
/*
* filename of the key file to be read.
* Returns
* NULL If the key does not exist or no name is supplied.
- * NON-NULL Initalized key structure if the key exists.
+ * NON-NULL Initialized key structure if the key exists.
*/
static DST_KEY *
/* DST_API control flags */
/* These are used used in functions dst_sign_data and dst_verify_data */
-#define SIG_MODE_INIT 1 /* initalize digest */
+#define SIG_MODE_INIT 1 /* initialize digest */
#define SIG_MODE_UPDATE 2 /* add data to digest */
#define SIG_MODE_FINAL 4 /* generate/verify signature */
#define SIG_MODE_ALL (SIG_MODE_INIT|SIG_MODE_UPDATE|SIG_MODE_FINAL)
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: adb.h,v 1.68 2001/11/27 03:00:50 marka Exp $ */
+/* $Id: adb.h,v 1.69 2002/02/20 01:44:02 gson Exp $ */
#ifndef DNS_ADB_H
#define DNS_ADB_H 1
*
* Requires:
* 'adb' to be a valid dns_adb_t, created via dns_adb_create().
- * 'adbp' to be a valid pointer to a *dns_adb_t which is initalized
+ * 'adbp' to be a valid pointer to a *dns_adb_t which is initialized
* to NULL.
*/
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: callbacks.h,v 1.15 2001/01/09 21:52:21 bwelling Exp $ */
+/* $Id: callbacks.h,v 1.16 2002/02/20 01:44:04 gson Exp $ */
#ifndef DNS_CALLBACKS_H
#define DNS_CALLBACKS_H 1
void
dns_rdatacallbacks_init(dns_rdatacallbacks_t *callbacks);
/*
- * Initalise 'callbacks'.
+ * Initialize 'callbacks'.
* 'error' and 'warn' are set to default callbacks that print the
* error message through the DNS library log context.
*
- * All other elements are initalised to NULL.
+ * All other elements are initialized to NULL.
*
* Requires:
* 'callbacks' is a valid dns_rdatacallbacks_t,
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: compress.h,v 1.29 2001/02/12 18:07:52 bwelling Exp $ */
+/* $Id: compress.h,v 1.30 2002/02/20 01:44:05 gson Exp $ */
#ifndef DNS_COMPRESS_H
#define DNS_COMPRESS_H 1
dns_decompresstype_t type);
/*
- * Initalises 'dctx'.
+ * Initializes 'dctx'.
* Records 'edns' and 'type' into the structure.
*
* Requires:
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zt.h,v 1.27 2001/05/14 19:06:47 bwelling Exp $ */
+/* $Id: zt.h,v 1.28 2002/02/20 01:44:06 gson Exp $ */
#ifndef DNS_ZT_H
#define DNS_ZT_H 1
* Creates a new zone table.
*
* Requires:
- * 'mctx' to be initalised.
+ * 'mctx' to be initialized.
*
* Returns:
* ISC_R_SUCCESS on success.
* Requires:
* 'zt' to be valid
* 'name' to be valid
- * 'foundname' to be initalised and associated with a fixedname or NULL
+ * 'foundname' to be initialized and associated with a fixedname or NULL
* 'zone' to be non NULL and '*zone' to be NULL
*
* Returns:
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: event.h,v 1.24 2001/01/09 21:56:52 bwelling Exp $ */
+/* $Id: event.h,v 1.25 2002/02/20 01:44:08 gson Exp $ */
#ifndef ISC_EVENT_H
#define ISC_EVENT_H 1
isc_event_allocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
isc_taskaction_t action, const void *arg, size_t size);
/*
- * Allocate and initalise in a structure with initial elements
+ * Allocate and initialize in a structure with initial elements
* defined by:
*
* struct {
* 'action' to be non NULL
*
* Returns:
- * a pointer to a initalised structure of the requested size.
+ * a pointer to a initialized structure of the requested size.
* NULL if unable to allocate memory.
*/
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: log.h,v 1.40 2002/01/23 01:27:52 gson Exp $ */
+/* $Id: log.h,v 1.41 2002/02/20 01:44:09 gson Exp $ */
#ifndef ISC_LOG_H
#define ISC_LOG_H 1
* after registration.
*
* The value of the id integer in each structure is overwritten
- * by this function, and so id need not be initalized to any particular
+ * by this function, and so id need not be initialized to any particular
* value prior to the function call.
*
* A subsequent call to isc_log_registercategories with the same
* after registration.
*
* The value of the id integer in each structure is overwritten
- * by this function, and so id need not be initalized to any particular
+ * by this function, and so id need not be initialized to any particular
* value prior to the function call.
*
* A subsequent call to isc_log_registermodules with the same