summaryrefslogtreecommitdiff
path: root/src/psycstore/plugin_psycstore_sqlite.c
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2016-01-12 23:26:47 +0000
committerGabor X Toth <*@tg-x.net>2016-01-12 23:26:47 +0000
commit50eaf8d7de763d25b7dae7ffdee8d7c6b5fe71ea (patch)
treea8023bdb9c9446a45792d7100303265c78713a50 /src/psycstore/plugin_psycstore_sqlite.c
parent3cbdbe18dbd56def00c0014381ff90b4ee664904 (diff)
downloadgnunet-50eaf8d7de763d25b7dae7ffdee8d7c6b5fe71ea.tar.gz
gnunet-50eaf8d7de763d25b7dae7ffdee8d7c6b5fe71ea.zip
psycutil reorg: message, env, slicer
Diffstat (limited to 'src/psycstore/plugin_psycstore_sqlite.c')
-rw-r--r--src/psycstore/plugin_psycstore_sqlite.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/psycstore/plugin_psycstore_sqlite.c b/src/psycstore/plugin_psycstore_sqlite.c
index 4ad3b1517..cc460d27f 100644
--- a/src/psycstore/plugin_psycstore_sqlite.c
+++ b/src/psycstore/plugin_psycstore_sqlite.c
@@ -35,7 +35,7 @@
35#include "gnunet_psycstore_service.h" 35#include "gnunet_psycstore_service.h"
36#include "gnunet_multicast_service.h" 36#include "gnunet_multicast_service.h"
37#include "gnunet_crypto_lib.h" 37#include "gnunet_crypto_lib.h"
38#include "gnunet_env_lib.h" 38#include "gnunet_psyc_util_lib.h"
39#include "psycstore.h" 39#include "psycstore.h"
40#include <sqlite3.h> 40#include <sqlite3.h>
41 41
@@ -1564,7 +1564,7 @@ state_modify_begin (void *cls,
1564static int 1564static int
1565state_modify_op (void *cls, 1565state_modify_op (void *cls,
1566 const struct GNUNET_CRYPTO_EddsaPublicKey *channel_key, 1566 const struct GNUNET_CRYPTO_EddsaPublicKey *channel_key,
1567 enum GNUNET_ENV_Operator op, 1567 enum GNUNET_PSYC_Operator op,
1568 const char *name, const void *value, size_t value_size) 1568 const char *name, const void *value, size_t value_size)
1569{ 1569{
1570 struct Plugin *plugin = cls; 1570 struct Plugin *plugin = cls;
@@ -1572,7 +1572,7 @@ state_modify_op (void *cls,
1572 1572
1573 switch (op) 1573 switch (op)
1574 { 1574 {
1575 case GNUNET_ENV_OP_ASSIGN: 1575 case GNUNET_PSYC_OP_ASSIGN:
1576 return state_assign (plugin, plugin->insert_state_current, channel_key, 1576 return state_assign (plugin, plugin->insert_state_current, channel_key,
1577 name, value, value_size); 1577 name, value, value_size);
1578 1578