BIND 10 trac1177, updated. 70bba1b3f811261fcef30694568245e83cd64bc5 [1177] constify

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Sep 23 18:17:09 UTC 2011


The branch, trac1177 has been updated
       via  70bba1b3f811261fcef30694568245e83cd64bc5 (commit)
      from  06a24c688282b61dd2ce5b6c00608bee34ae3563 (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 70bba1b3f811261fcef30694568245e83cd64bc5
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Fri Sep 23 11:17:03 2011 -0700

    [1177] constify

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

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

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/sqlite3_accessor.cc b/src/lib/datasrc/sqlite3_accessor.cc
index 22e1f30..69d5649 100644
--- a/src/lib/datasrc/sqlite3_accessor.cc
+++ b/src/lib/datasrc/sqlite3_accessor.cc
@@ -688,7 +688,7 @@ SQLite3Accessor::findPreviousName(int zone_id, const std::string& rname)
     }
 
     std::string result;
-    int rc = sqlite3_step(dbparameters_->statements_[FIND_PREVIOUS]);
+    const int rc = sqlite3_step(dbparameters_->statements_[FIND_PREVIOUS]);
     if (rc == SQLITE_ROW) {
         // We found it
         result = convertToPlainChar(sqlite3_column_text(dbparameters_->




More information about the bind10-changes mailing list