]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Wed, 20 Jun 2012 23:46:40 +0000 (23:46 +0000)
committerTinderbox User <tbox@isc.org>
Wed, 20 Jun 2012 23:46:40 +0000 (23:46 +0000)
lib/dns/db.c
lib/dns/include/dns/db.h
lib/dns/include/dns/master.h
lib/dns/include/dns/rbt.h
lib/dns/include/dns/types.h
lib/dns/master.c
lib/dns/masterdump.c
lib/dns/rbt.c
lib/dns/rbtdb.c
lib/isc/unix/file.c
lib/isc/win32/file.c

index 58ea3b83b451a03975f6c23943361e2469f509c6..52d1b690a91cb3594901506f27ac10dbcc0c4546 100644 (file)
@@ -372,7 +372,7 @@ dns_db_load3(dns_db_t *db, const char *filename, dns_masterformat_t format,
        return (result);
 }
 
-isc_result_t 
+isc_result_t
 dns_db_serialize(dns_db_t *db, dns_dbversion_t *version, FILE *file) {
        REQUIRE(DNS_DB_VALID(db));
        if (db->methods->serialize == NULL)
index 7d21bed02f67b11403e318931c2b06d6351d2eec..61e3e93cd1bd186db1a6233afa95fbdaba1e3457 100644 (file)
@@ -79,7 +79,7 @@ typedef struct dns_dbmethods {
        void            (*detach)(dns_db_t **dbp);
        isc_result_t    (*beginload)(dns_db_t *db,
                                     dns_rdatacallbacks_t *callbacks);
-       isc_result_t    (*endload)(dns_db_t *db, 
+       isc_result_t    (*endload)(dns_db_t *db,
                                     dns_rdatacallbacks_t *callbacks);
        isc_result_t    (*serialize)(dns_db_t *db,
                                     dns_dbversion_t *version, FILE *file);
@@ -483,7 +483,7 @@ dns_db_beginload(dns_db_t *db, dns_rdatacallbacks_t *callbacks);
  * \li On success, callbacks->add will be a valid dns_addrdatasetfunc_t
  *      suitable for loading records into 'db' from a raw or text zone
  *      file. callbacks->add_private will be a valid DB load context
- *      which should be used as 'arg' when callbacks->add is called. 
+ *      which should be used as 'arg' when callbacks->add is called.
  *      callbacks->deserialize will be a valid dns_deserialize_func_t
  *      suitable for loading 'db' from a fast format zone file.
  *
@@ -558,7 +558,7 @@ dns_db_load3(dns_db_t *db, const char *filename, dns_masterformat_t format,
  *     implementation used, syntax errors in the master file, etc.
  */
 
-isc_result_t 
+isc_result_t
 dns_db_serialize(dns_db_t *db, dns_dbversion_t *version, FILE *rbtfile);
 /*%<
  * Dump version 'version' of 'db' to fast file 'filename'.
index 07f92ffba301dcf2e979f1d28760a72e4f335a6f..22a9a9c6ea256de1e96a845c9757ad4b93fa7fdc 100644 (file)
@@ -78,7 +78,7 @@ ISC_LANG_BEGINDECLS
 /* Common header */
 struct dns_masterrawheader {
        isc_uint32_t            format;         /* must be
-                                                * dns_masterformat_raw 
+                                                * dns_masterformat_raw
                                                 * or
                                                 * dns_masterformat_fast */
        isc_uint32_t            version;        /* compatibility for future
index a57c02579e77569cf794efb960d6393c086963a4..2d46e665419b4e8493eebd766ae7049db6094136 100644 (file)
@@ -116,7 +116,7 @@ struct dns_rbtnode {
        unsigned int offsetlen : 8;     /*%< range is 1..128 */
        unsigned int oldnamelen : 8;    /*%< range is 1..255 */
        /*@}*/
-       
+
        /* flags needed for serialization to file*/
        unsigned int is_mmapped : 1;
        unsigned int parent_is_relative : 1;
@@ -700,7 +700,7 @@ dns_rbt_serialize_tree(FILE *file, dns_rbt_t *rbt,
  * \li  The file must be an actual file which allows seek() calls, so it cannot
  *      be a stream.  Returns ISC_R_INVALIDFILE if not.
  */
+
 isc_result_t
 dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
                         isc_mem_t *mctx,
@@ -716,7 +716,7 @@ dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
  * \li  The file must be an actual file which allows seek() calls, so it cannot
  *      be a stream.  This condition is not checked in the code.
  */
+
 void
 dns_rbt_printall(dns_rbt_t *rbt, void (*data_printer)(FILE *, void *));
 /*%<
@@ -735,7 +735,7 @@ dns_rbt_printnodeinfo(dns_rbtnode_t *n);
 /*%<
  * Print out various information about a node
  */
-       
+
 /*****
  ***** Chain Functions
  *****/
index 8535dabae4284c5c8f586ac16d85628fffe3efeb..62e79998f7087811bfcb862607353676759107eb 100644 (file)
@@ -191,7 +191,7 @@ typedef enum {
        dns_masterformat_none = 0,
        dns_masterformat_text = 1,
        dns_masterformat_raw  = 2,
-       dns_masterformat_fast = 3 
+       dns_masterformat_fast = 3
 } dns_masterformat_t;
 
 typedef enum {
index 5babef8198736131460458e998025b573a2c898e..30e5a7495964198d9edfdaed34aa815de4428a17 100644 (file)
@@ -2146,7 +2146,7 @@ load_header(dns_loadctx_t *lctx) {
        }
 
        header.version = isc_buffer_getuint32(&target);
-               
+
        switch (header.version) {
        case 0:
                remainder = sizeof(header.dumptime);
@@ -2179,7 +2179,7 @@ load_header(dns_loadctx_t *lctx) {
 
        lctx->first = ISC_FALSE;
        lctx->header = header;
-       
+
        return (ISC_R_SUCCESS);
 }
 
@@ -2190,7 +2190,7 @@ static isc_result_t
 load_fast(dns_loadctx_t *lctx) {
        isc_result_t result;
        dns_rdatacallbacks_t *callbacks;
-       
+
        REQUIRE(DNS_LCTX_VALID(lctx));
 
        callbacks = lctx->callbacks;
@@ -2204,7 +2204,7 @@ load_fast(dns_loadctx_t *lctx) {
                                          lctx->f,
                                          sizeof(dns_masterrawheader_t));
        }
-       
+
        return (ISC_R_SUCCESS);
 }
 
index c7328433db820c215191c67df6846b3d781d7b11..90360aaef65850e88c2dd7efa8042328f94a9965 100644 (file)
@@ -1378,13 +1378,13 @@ writeheader(dns_dumpctx_t *dctx) {
        isc_region_t r;
        dns_masterrawheader_t rawheader;
        isc_uint32_t rawversion, now32;
-       
+
        bufmem = isc_mem_get(dctx->mctx, initial_buffer_length);
        if (bufmem == NULL)
                return (ISC_R_NOMEMORY);
 
        isc_buffer_init(&buffer, bufmem, initial_buffer_length);
-       
+
        switch (dctx->format) {
        case dns_masterformat_text:
                /*
index 79885f20977df3e08084103879a4a0ee868d6cb3..e2d30f3be96cb05cf297e46263080b0759e7016c 100644 (file)
@@ -106,7 +106,7 @@ const unsigned int HEADER_LENGTH = 1024;
 struct file_header {
        char version1[32];
        isc_uint64_t first_node_offset; /* usually 1024 */
-       /* 
+       /*
         * information about the system on which the fast file was generated
         * will be used to tell if we can load the fast file or not
         */
@@ -123,10 +123,10 @@ struct file_header {
  * step one: write out a zeroed header of 1024 bytes
  * step two: walk the tree in a depth-first, left-right-down order, writing
  * out the nodes, reserving space as we go, correcting addresses to point
- * at the proper offset in the file, and setting a flag for each pointer to 
- * indicate that it is a reference to a location in the file, rather than in 
+ * at the proper offset in the file, and setting a flag for each pointer to
+ * indicate that it is a reference to a location in the file, rather than in
  * memory.
- * step three: write out the header, adding the information that will be 
+ * step three: write out the header, adding the information that will be
  * needed to re-create the tree object itself.
  *
  * The RBTDB object will do this three times, once for each of the three
@@ -152,15 +152,15 @@ serialize_nodes(FILE *file, dns_rbtnode_t *node, isc_uint64_t parent,
                dns_rbtdatawriter_t datawriter, isc_uint32_t serial,
                isc_uint64_t *where);
 /*
- * The following functions allow you to get the actual address of a pointer 
- * without having to use an if statement to check to see if that address is 
+ * The following functions allow you to get the actual address of a pointer
+ * without having to use an if statement to check to see if that address is
  * relative or not
  */
 static inline dns_rbtnode_t *
 getparent(dns_rbtnode_t *node, file_header_t *header) {
        char *adjusted_address = (char *)(node->parent);
        adjusted_address += node->parent_is_relative * (isc_uint64_t)header;
-       
+
        return ((dns_rbtnode_t *)adjusted_address);
 }
 
@@ -168,7 +168,7 @@ static inline dns_rbtnode_t *
 getleft(dns_rbtnode_t *node, file_header_t *header) {
        char *adjusted_address = (char *)(node->left);
        adjusted_address += node->left_is_relative * (isc_uint64_t)header;
-       
+
        return ((dns_rbtnode_t *)adjusted_address);
 }
 
@@ -176,7 +176,7 @@ static inline dns_rbtnode_t *
 getright(dns_rbtnode_t *node, file_header_t *header) {
        char *adjusted_address = (char *)(node->right);
        adjusted_address += node->right_is_relative * (isc_uint64_t)header;
-       
+
        return ((dns_rbtnode_t *)adjusted_address);
 }
 
@@ -184,7 +184,7 @@ static inline dns_rbtnode_t *
 getdown(dns_rbtnode_t *node, file_header_t *header) {
        char *adjusted_address = (char *)(node->down);
        adjusted_address += node->down_is_relative * (isc_uint64_t)header;
-       
+
        return ((dns_rbtnode_t *)adjusted_address);
 }
 
@@ -192,7 +192,7 @@ static inline dns_rbtnode_t *
 getdata(dns_rbtnode_t *node, file_header_t *header) {
        char *adjusted_address = (char *)(node->data);
        adjusted_address += node->data_is_relative * (isc_uint64_t)header;
-       
+
        return ((dns_rbtnode_t *)adjusted_address);
 }
 
@@ -369,7 +369,7 @@ dns_rbt_zero_header(FILE *file) {
         */
        char buffer[HEADER_LENGTH];
        isc_result_t result;
-       
+
        memset(buffer, 0, HEADER_LENGTH);
        result = isc_stdio_write(buffer, 1, HEADER_LENGTH, file, NULL);
        if (result != ISC_R_SUCCESS)
@@ -378,7 +378,7 @@ dns_rbt_zero_header(FILE *file) {
        result = fflush(file);
        if (result != ISC_R_SUCCESS)
                return (result);
-               
+
        return (ISC_R_SUCCESS);
 }
 
@@ -389,11 +389,11 @@ dns_rbt_zero_header(FILE *file) {
  * Any information stored in the rbt object itself should be stored
  * here.
  */
-static isc_result_t 
+static isc_result_t
 write_header(FILE *file, dns_rbt_t *rbt, isc_uint64_t first_node_offset) {
        file_header_t header;
        isc_result_t result;
-       
+
        if (FILE_VERSION[0] == '\0') {
                memset(FILE_VERSION, 0, sizeof(FILE_VERSION));
                snprintf(FILE_VERSION, sizeof(FILE_VERSION),
@@ -406,20 +406,20 @@ write_header(FILE *file, dns_rbt_t *rbt, isc_uint64_t first_node_offset) {
        header.first_node_offset = first_node_offset;
        header.ptrsize = (isc_uint32_t) sizeof(void *);
        header.bigendian = (1 == htonl(1)) ? 1 : 0;
-       
+
 #ifdef DNS_RDATASET_FIXED
        header.rdataset_fixed = 1;
 #else
        header.rdataset_fixed = 0;
-#endif 
-       
+#endif
+
        header.nodecount = rbt->nodecount;
 
        CHECK(isc_stdio_seek(file, dns_rbt_serialize_align(ftell(file)),
                             SEEK_SET));
        CHECK(isc_stdio_write(&header, 1, sizeof(file_header_t), file, NULL));
        CHECK(fflush(file));
-       
+
        /* Ensure we are always at the end of the file. */
        CHECK(isc_stdio_seek(file, 0, SEEK_END));
 
@@ -427,8 +427,8 @@ write_header(FILE *file, dns_rbt_t *rbt, isc_uint64_t first_node_offset) {
        return (result);
 }
 
-static isc_result_t 
-serialize_node(FILE *file, dns_rbtnode_t *node, isc_uint64_t left, 
+static isc_result_t
+serialize_node(FILE *file, dns_rbtnode_t *node, isc_uint64_t left,
               isc_uint64_t right, isc_uint64_t down,
               isc_uint64_t parent, isc_uint64_t data)
 {
@@ -451,7 +451,7 @@ serialize_node(FILE *file, dns_rbtnode_t *node, isc_uint64_t left,
        temp_node.parent_is_relative = 0;
        temp_node.data_is_relative = 0;
        temp_node.is_mmapped = 1;
-       
+
        /*
         * If the next node is not NULL, calculate the next node's location
         * in the file.  Note that this will have to change when the data
@@ -500,7 +500,7 @@ serialize_nodes(FILE *file, dns_rbtnode_t *node, isc_uint64_t parent,
        isc_uint64_t this_node_location = 0;
        isc_uint64_t offset_adjust;
        isc_result_t result;
-       
+
        if (node == NULL) {
                if (where != NULL)
                        *where = 0;
@@ -514,7 +514,7 @@ serialize_nodes(FILE *file, dns_rbtnode_t *node, isc_uint64_t parent,
        offset_adjust = dns_rbt_serialize_align(this_node_location +
                                                NODE_SIZE(node));
        CHECK(isc_stdio_seek(file, offset_adjust, SEEK_SET));
-               
+
        /* Serialize the rest of the tree */
        CHECK(serialize_nodes(file, getleft(node, NULL), this_node_location,
                              datawriter, serial, &left));
@@ -525,11 +525,11 @@ serialize_nodes(FILE *file, dns_rbtnode_t *node, isc_uint64_t parent,
 
        if (node->data != NULL) {
                CHECK(isc_stdio_seek(file, dns_rbt_serialize_align(ftell(file)),
-                                    SEEK_SET));
+                                    SEEK_SET));
                data = ftell(file);
                datawriter(file, node->data, serial);
        }
-       
+
        /* Seek back to reserved space */
        CHECK(isc_stdio_seek(file, this_node_location, SEEK_SET));
 
@@ -556,8 +556,8 @@ dns_rbt_serialize_align(isc_uint64_t target) {
                return (target + 8 - offset);
 }
 
-isc_result_t 
-dns_rbt_serialize_tree(FILE *file, dns_rbt_t *rbt, 
+isc_result_t
+dns_rbt_serialize_tree(FILE *file, dns_rbt_t *rbt,
                       dns_rbtdatawriter_t datawriter,
                       isc_uint32_t serial, isc_uint64_t *offset)
 {
@@ -565,7 +565,7 @@ dns_rbt_serialize_tree(FILE *file, dns_rbt_t *rbt,
        long header_position, node_position, end_position;
 
        REQUIRE(file != NULL);
-       
+
        CHECK(isc_file_isplainfilefd(fileno(file)));
 
        header_position = ftell(file);
@@ -577,13 +577,13 @@ dns_rbt_serialize_tree(FILE *file, dns_rbt_t *rbt,
        node_position = ftell(file);
        CHECK(serialize_nodes(file, rbt->root, 0, datawriter, serial, NULL));
        end_position = ftell(file);
-       
+
        if (node_position == end_position) {
                CHECK(isc_stdio_seek(file, header_position, SEEK_SET));
                *offset = 0;
                return (ISC_R_SUCCESS);
        }
-               
+
        /* Serialize header */
        CHECK(isc_stdio_seek(file, header_position, SEEK_SET));
        CHECK(write_header(file, rbt, HEADER_LENGTH));
@@ -618,7 +618,7 @@ treefix(dns_rbt_t *rbt, dns_rbtnode_t *n, dns_name_t *name,
                INSIST(result == ISC_R_SUCCESS);
                /* XXX: we need to catch errors better than this */
        }
-       
+
        INSIST(!n->parent_is_relative || n->parent != NULL);
        INSIST(!n->right_is_relative || n->right != NULL);
        INSIST(!n->left_is_relative || n->left != NULL);
@@ -639,12 +639,12 @@ treefix(dns_rbt_t *rbt, dns_rbtnode_t *n, dns_name_t *name,
 
        n->data = getdata(n, rbt->mmap_location);
        n->data_is_relative = 0;
-       
+
        hash_node(rbt, n, fullname);
-       
+
        if (data_fixer != NULL && n->data != NULL)
                data_fixer(n);
-       
+
        if (n->right != NULL)
                treefix(rbt, n->right, name, data_fixer);
        if (n->left != NULL)
@@ -653,7 +653,7 @@ treefix(dns_rbt_t *rbt, dns_rbtnode_t *n, dns_name_t *name,
                treefix(rbt, n->down, fullname, data_fixer);
 }
 
-isc_result_t 
+isc_result_t
 dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
                         isc_mem_t *mctx,
                         void (*deleter)(void *, void *),
@@ -665,7 +665,7 @@ dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
        file_header_t *header;
 
        REQUIRE(originp == NULL || *originp == NULL);
-       
+
        result = dns_rbt_create(mctx, deleter, deleter_arg, rbtp);
        if (result != ISC_R_SUCCESS)
                return (result);
@@ -673,12 +673,12 @@ dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
        (*rbtp)->mmap_location = base_address;
 
        header = (file_header_t *)((char *)base_address + header_offset);
-       
+
 #ifdef DNS_RDATASET_FIXED
        if (header->rdataset_fixed != 1) {
                return (ISC_R_INVALIDFILE);
        }
-       
+
 #else
        if (header->rdataset_fixed != 0) {
                return (ISC_R_INVALIDFILE);
@@ -691,7 +691,7 @@ dns_rbt_deserialize_tree(void *base_address, off_t header_offset,
        if (header->bigendian != (1 == htonl(1)) ? 1 : 0) {
                return (ISC_R_INVALIDFILE);
        }
-       
+
        /* Copy other data items from the header into our rbt. */
        (*rbtp)->root = (dns_rbtnode_t *)((char *)base_address +
                                header_offset + header->first_node_offset);
@@ -770,7 +770,7 @@ dns_rbt_destroy2(dns_rbt_t **rbtp, unsigned int quantum) {
                return (ISC_R_QUOTA);
 
        INSIST(rbt->nodecount == 0);
-       
+
        rbt->mmap_location = NULL;
 
        if (rbt->hashtable != NULL)
@@ -1814,7 +1814,7 @@ dns_rbt_deletenode(dns_rbt_t *rbt, dns_rbtnode_t *node, isc_boolean_t recurse)
        node->magic = 0;
 #endif
        dns_rbtnode_refdestroy(node);
-       
+
        freenode(rbt, &node);
 
        /*
@@ -1939,7 +1939,7 @@ create_node(isc_mem_t *mctx, dns_name_t *name, dns_rbtnode_t **nodep) {
        node->right_is_relative = 0;
        node->parent_is_relative = 0;
        node->data_is_relative = 0;
-       
+
 #ifdef DNS_RBT_USEHASH
        HASHNEXT(node) = NULL;
        HASHVAL(node) = 0;
@@ -2556,12 +2556,12 @@ deletetree(dns_rbt_t *rbt, dns_rbtnode_t *node) {
 static void
 freenode(dns_rbt_t *rbt, dns_rbtnode_t **nodep) {
        dns_rbtnode_t *node = *nodep;
-       
+
        if (node->is_mmapped == 0) {
                isc_mem_put(rbt->mctx, node, NODE_SIZE(node));
        }
        *nodep = NULL;
-       
+
        rbt->nodecount--;
 }
 
@@ -2607,9 +2607,9 @@ deletetreeflat(dns_rbt_t *rbt, unsigned int quantum, dns_rbtnode_t **nodep) {
                        DOWN(parent) = RIGHT(node);
        } else
                parent = RIGHT(node);
-               
+
        freenode(rbt, &node);
-       
+
        node = parent;
        if (quantum != 0 && --quantum == 0) {
                *nodep = node;
@@ -2633,10 +2633,10 @@ dns_rbt_printnodeinfo(dns_rbtnode_t *n) {
        printf("Node info for nodename: ");
        printnodename(n);
        printf("\n");
-       
+
        printf("n = %p\n", n);
 
-       printf("Relative pointers: %s%s%s%s%s\n", 
+       printf("Relative pointers: %s%s%s%s%s\n",
                        (n->parent_is_relative == 1 ? " P" : ""),
                        (n->right_is_relative == 1 ? " R" : ""),
                        (n->left_is_relative == 1 ? " L" : ""),
@@ -2694,7 +2694,7 @@ dns_rbt_printtree(dns_rbtnode_t *root, dns_rbtnode_t *parent,
                }
 
                printf(")");
-               
+
                if (root->data != NULL && data_printer != NULL) {
                        printf(" data@%p: ", root->data);
                        data_printer(stdout, root->data);
index 343b00370f8953848780d8cc5c125429bebc1059..2139f321780ff9960bd5804029c54e58f6118b6a 100644 (file)
@@ -497,7 +497,7 @@ struct dns_rbtdb {
         */
        isc_mem_t *                     hmctx;
        isc_heap_t                      **heaps;
-       
+
        /*
         * Base values for the mmap() code.
         */
@@ -1069,10 +1069,10 @@ free_rbtdb(dns_rbtdb_t *rbtdb, isc_boolean_t log, isc_event_t *event) {
        rbtdb->common.impmagic = 0;
        ondest = rbtdb->common.ondest;
        isc_mem_detach(&rbtdb->hmctx);
-       
+
        if (rbtdb->mmap_location != NULL)
                munmap(rbtdb->mmap_location, rbtdb->mmap_size);
-       
+
        isc_mem_putanddetach(&rbtdb->common.mctx, rbtdb, sizeof(*rbtdb));
        isc_ondestroy_notify(&ondest, rbtdb);
 }
@@ -1376,7 +1376,7 @@ static inline void
 free_rdataset(dns_rbtdb_t *rbtdb, isc_mem_t *mctx, rdatasetheader_t *rdataset) {
        unsigned int size;
        int idx;
-       
+
        if (EXISTS(rdataset) &&
            (rdataset->attributes & RDATASET_ATTR_STATCOUNT) != 0) {
                update_rrsetstats(rbtdb, rdataset, ISC_FALSE);
@@ -5682,7 +5682,7 @@ zone_findrdataset(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
        }
        serial = rbtversion->serial;
        now = 0;
-       
+
        NODE_LOCK(&rbtdb->node_locks[rbtnode->locknum].lock,
                  isc_rwlocktype_read);
 
@@ -7180,9 +7180,9 @@ deserialize(void *arg, FILE *f, off_t offset) {
        char *base;
        dns_rbt_t *temporary_rbt = NULL;
        int protect, flags;
-       
+
        REQUIRE(VALID_RBTDB(rbtdb));
-       
+
        /*
         * TODO CKB: since this is read-write (had to be to add nodes later)
         * we will need to lock the file or the nodes in it before modifying
@@ -7197,7 +7197,7 @@ deserialize(void *arg, FILE *f, off_t offset) {
 #ifdef MAP_FILE
        flags |= MAP_FILE;
 #endif
-       
+
        base = mmap(NULL, filesize, protect, flags, fd, 0);
        if (base == NULL || base == MAP_FAILED)
                return (ISC_R_FAILURE);
@@ -7207,7 +7207,7 @@ deserialize(void *arg, FILE *f, off_t offset) {
        rbtdb->mmap_location = base;
        rbtdb->mmap_size = filesize;
        rbtdb->origin_node = NULL;
-       
+
        if (header->tree != 0) {
                dns_rbt_deserialize_tree(base, header->tree,
                                         rbtdb->common.mctx, delete_callback,
@@ -7218,8 +7218,8 @@ deserialize(void *arg, FILE *f, off_t offset) {
                        dns_rbt_destroy(&rbtdb->tree);
                        rbtdb->tree = temporary_rbt;
                        temporary_rbt = NULL;
-                       
-                       rbtdb->origin_node = 
+
+                       rbtdb->origin_node =
                                (dns_rbtnode_t *)(header->tree + base + 1024);
                }
        }
@@ -7318,13 +7318,13 @@ endload(dns_db_t *db, dns_rdatacallbacks_t *callbacks) {
        callbacks->deserialize_private = NULL;
 
        isc_mem_put(rbtdb->common.mctx, loadctx, sizeof(*loadctx));
-       
+
        return (ISC_R_SUCCESS);
 }
 
 /*
  * helper function to handle writing out the rdataset data pointed to
- * by the void *data pointer in the dns_rbtnode 
+ * by the void *data pointer in the dns_rbtnode
  */
 static isc_result_t
 rbt_datawriter(FILE *rbtfile, unsigned char *data, isc_uint32_t serial) {
@@ -7396,7 +7396,7 @@ rbtdb_zero_header(FILE *rbtfile) {
        memset(buffer, 0, RBTDB_HEADER_LENGTH);
        result = isc_stdio_write(buffer, 1, RBTDB_HEADER_LENGTH, rbtfile, NULL);
        fflush(rbtfile);
-       
+
        return (result);
 }
 
@@ -7439,7 +7439,7 @@ serialize(dns_db_t *db, dns_dbversion_t *ver, FILE *rbtfile) {
        rbtdb_version_t *version = (rbtdb_version_t *) ver;
        dns_rbtdb_t *rbtdb;
        isc_result_t result;
-       isc_uint64_t tree_location; 
+       isc_uint64_t tree_location;
        isc_uint64_t nsec_location;
        isc_uint64_t nsec3_location;
        isc_uint64_t rbtdb_header_location;
@@ -7455,12 +7455,12 @@ serialize(dns_db_t *db, dns_dbversion_t *ver, FILE *rbtfile) {
        /*
         * first, write out a zeroed header to store rbtdb information
         *
-        * then for each of the three trees, store the current position 
+        * then for each of the three trees, store the current position
         * in the file and call dns_rbt_serialize_tree
         *
-        * finally, write out the rbtdb header, storing the locations of the 
+        * finally, write out the rbtdb header, storing the locations of the
         * rbtheaders
-        * 
+        *
         * NOTE: need to do something better with the return codes, &= will
         * not work.
         */
index 5775421540419d08d4199bc95981bf956bb73d5d..92da1b33b86173d1009c478493bd5a2ede558d3f 100644 (file)
@@ -100,12 +100,12 @@ file_stats(const char *file, struct stat *stats) {
 static isc_result_t
 fd_stats(int fd, struct stat *stats) {
        isc_result_t result = ISC_R_SUCCESS;
-       
+
        REQUIRE(stats != NULL);
-       
+
        if (fstat(fd, stats) != 0)
                result = isc__errno2result(errno);
-       
+
        return (result);
 }
 
index 9383920f3577fb410cb8c45446eb7007afbf3b14..b57df1c93571e1e5bdd25e3c4cdec53267113748 100644 (file)
@@ -138,12 +138,12 @@ file_stats(const char *file, struct stat *stats) {
 static isc_result_t
 fd_stats(int fd, struct stat *stats) {
        isc_result_t result = ISC_R_SUCCESS;
-       
+
        REQUIRE(stats != NULL);
-       
+
        if (fstat(fd, stats) != 0)
                result = isc__errno2result(errno);
-       
+
        return (result);
 }