aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-09-05 19:05:05 +0000
committerChristian Grothoff <christian@grothoff.org>2014-09-05 19:05:05 +0000
commit68636e1c0276e2eec1e06c4c0e65a5e1ee079028 (patch)
treea515602aeaa1b91257cb27ca66b0ad3d640e5eaa /src/datastore
parent487a633dbbf9b26971d0985ec57f0717da79a4d8 (diff)
downloadgnunet-68636e1c0276e2eec1e06c4c0e65a5e1ee079028.tar.gz
gnunet-68636e1c0276e2eec1e06c4c0e65a5e1ee079028.zip
-remve legacy option
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index d73475b6c..5ece7cd17 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -272,9 +272,6 @@ database_setup (const struct GNUNET_CONFIGURATION_Handle *cfg,
272 sqlite3_exec (plugin->dbh, "PRAGMA locking_mode=EXCLUSIVE", NULL, NULL, 272 sqlite3_exec (plugin->dbh, "PRAGMA locking_mode=EXCLUSIVE", NULL, NULL,
273 ENULL)); 273 ENULL));
274 CHECK (SQLITE_OK == 274 CHECK (SQLITE_OK ==
275 sqlite3_exec (plugin->dbh, "PRAGMA count_changes=OFF", NULL, NULL,
276 ENULL));
277 CHECK (SQLITE_OK ==
278 sqlite3_exec (plugin->dbh, "PRAGMA page_size=4092", NULL, NULL, 275 sqlite3_exec (plugin->dbh, "PRAGMA page_size=4092", NULL, NULL,
279 ENULL)); 276 ENULL));
280 277