BIND 10 trac1177, updated. 688867daa34ade5075443c77535f80e1d2d76743 [1177] more constify

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Sep 26 18:21:58 UTC 2011


The branch, trac1177 has been updated
       via  688867daa34ade5075443c77535f80e1d2d76743 (commit)
      from  d36ded7d95a695f0412f6ccdb59bf55fc600e9d3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 688867daa34ade5075443c77535f80e1d2d76743
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Mon Sep 26 11:21:45 2011 -0700

    [1177] more constify

-----------------------------------------------------------------------

Summary of changes:
 src/lib/datasrc/database.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/database.cc b/src/lib/datasrc/database.cc
index a8c6bae..e476297 100644
--- a/src/lib/datasrc/database.cc
+++ b/src/lib/datasrc/database.cc
@@ -357,8 +357,8 @@ DatabaseClient::Finder::findNSECCover(const Name& name) {
         // Which one should contain the NSEC record?
         const Name coverName(findPreviousName(name));
         // Get the record and copy it out
-        FoundRRsets found = getRRsets(coverName.toText(), NSEC_TYPES(),
-                                      coverName != getOrigin());
+        const FoundRRsets found = getRRsets(coverName.toText(), NSEC_TYPES(),
+                                            coverName != getOrigin());
         const FoundIterator
             nci(found.second.find(RRType::NSEC()));
         if (nci != found.second.end()) {




More information about the bind10-changes mailing list