BIND 10 master, updated. 4b7b2f9a808352bb4ef1a71de3a46cdd79076050 [master] Use consistent case in SQLite3 naming

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Jan 22 16:12:51 UTC 2013


The branch, master has been updated
       via  4b7b2f9a808352bb4ef1a71de3a46cdd79076050 (commit)
      from  9bb9dbe6234769cbe525c24887eefe16ef1d7cee (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 4b7b2f9a808352bb4ef1a71de3a46cdd79076050
Author: Mukund Sivaraman <muks at isc.org>
Date:   Tue Jan 22 21:40:47 2013 +0530

    [master] Use consistent case in SQLite3 naming

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

Summary of changes:
 src/lib/datasrc/sqlite3_accessor_link.cc |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/sqlite3_accessor_link.cc b/src/lib/datasrc/sqlite3_accessor_link.cc
index c064e0f..56e0c2f 100644
--- a/src/lib/datasrc/sqlite3_accessor_link.cc
+++ b/src/lib/datasrc/sqlite3_accessor_link.cc
@@ -47,12 +47,12 @@ checkConfig(ConstElementPtr config, ElementPtr errors) {
     bool result = true;
 
     if (!config || config->getType() != Element::map) {
-        addError(errors, "Base config for SQlite3 backend must be a map");
+        addError(errors, "Base config for SQLite3 backend must be a map");
         result = false;
     } else {
         if (!config->contains(CONFIG_ITEM_DATABASE_FILE)) {
             addError(errors,
-                     "Config for SQlite3 backend does not contain a '" +
+                     "Config for SQLite3 backend does not contain a '" +
                      string(CONFIG_ITEM_DATABASE_FILE) +
                      "' value");
             result = false;
@@ -89,11 +89,11 @@ createInstance(isc::data::ConstElementPtr config, std::string& error) {
             new SQLite3Accessor(dbfile, "IN")); // XXX: avoid hardcode RR class
         return (new DatabaseClient(isc::dns::RRClass::IN(), sqlite3_accessor));
     } catch (const std::exception& exc) {
-        error = std::string("Error creating sqlite3 datasource: ") +
+        error = std::string("Error creating SQLite3 datasource: ") +
             exc.what();
         return (NULL);
     } catch (...) {
-        error = std::string("Error creating sqlite3 datasource, "
+        error = std::string("Error creating SQLite3 datasource, "
                             "unknown exception");
         return (NULL);
     }



More information about the bind10-changes mailing list