This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/4202
cosmetic: log: "SQLite" with capital L
Change-Id: I43a6ea646f14cfea3a7cd4eb88237ada6d47f5f1
---
M src/db.c
1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/02/4202/1
diff --git a/src/db.c b/src/db.c
index 2c10ba0..0ece61b 100644
--- a/src/db.c
+++ b/src/db.c
@@ -132,16 +132,16 @@
const char *o = sqlite3_compileoption_get(i);
if (!o)
break;
- LOGP(DDB, LOGL_DEBUG, "SQlite3 compiled with '%s'\n", o);
+ LOGP(DDB, LOGL_DEBUG, "SQLite3 compiled with '%s'\n", o);
}
rc = sqlite3_config(SQLITE_CONFIG_LOG, sql3_error_log_cb, NULL);
if (rc != SQLITE_OK)
- LOGP(DDB, LOGL_NOTICE, "Unable to set SQlite3 error log callback\n");
+ LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 error log callback\n");
rc = sqlite3_config(SQLITE_CONFIG_SQLLOG, sql3_sql_log_cb, NULL);
if (rc != SQLITE_OK)
- LOGP(DDB, LOGL_NOTICE, "Unable to set SQlite3 SQL statement log callback\n");
+ LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 SQL statement log callback\n");
rc = sqlite3_open(dbc->fname, &dbc->db);
if (rc != SQLITE_OK) {
@@ -153,7 +153,7 @@
/* enable extended result codes */
rc = sqlite3_extended_result_codes(dbc->db, 1);
if (rc != SQLITE_OK)
- LOGP(DDB, LOGL_ERROR, "Unable to enable SQlite3 extended result codes\n");
+ LOGP(DDB, LOGL_ERROR, "Unable to enable SQLite3 extended result codes\n");
char *err_msg;
rc = sqlite3_exec(dbc->db, "PRAGMA journal_mode=WAL; PRAGMA synchonous = NORMAL;", 0, 0, &err_msg);
--
To view, visit https://gerrit.osmocom.org/4202
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I43a6ea646f14cfea3a7cd4eb88237ada6d47f5f1
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>