aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-17 23:13:35 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-17 23:13:35 +0000
commit2d4d4927f575dc9e0493cd2c1fe5d4a3b0eaf20d (patch)
treed3f15f9e04aeccc083b041c9034a5f8258a4cb2c /src/datastore
parent440ad169d0f6dc03d6cabd484698fe8c0f62d1b8 (diff)
downloadgnunet-2d4d4927f575dc9e0493cd2c1fe5d4a3b0eaf20d.tar.gz
gnunet-2d4d4927f575dc9e0493cd2c1fe5d4a3b0eaf20d.zip
64
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 27a349be0..e4a41c899 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -693,7 +693,7 @@ sqlite_plugin_put (void *cls,
693 (SQLITE_OK != sqlite3_bind_int (stmt, 2, type)) || 693 (SQLITE_OK != sqlite3_bind_int (stmt, 2, type)) ||
694 (SQLITE_OK != sqlite3_bind_int (stmt, 3, priority)) || 694 (SQLITE_OK != sqlite3_bind_int (stmt, 3, priority)) ||
695 (SQLITE_OK != sqlite3_bind_int (stmt, 4, anonymity)) || 695 (SQLITE_OK != sqlite3_bind_int (stmt, 4, anonymity)) ||
696 (SQLITE_OK != sqlite3_bind_int64 (stmt, 5, expiration.value)) || 696 (SQLITE_OK != sqlite3_bind_int64 (stmt, 5, (sqlite3_int64) expiration.value)) ||
697 (SQLITE_OK != 697 (SQLITE_OK !=
698 sqlite3_bind_blob (stmt, 6, key, sizeof (GNUNET_HashCode), 698 sqlite3_bind_blob (stmt, 6, key, sizeof (GNUNET_HashCode),
699 SQLITE_TRANSIENT)) || 699 SQLITE_TRANSIENT)) ||