diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-06-11 01:23:16 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-06-11 01:33:02 +0200 |
commit | c90ae1921559d990c179800ac392b0a5358758fb (patch) | |
tree | c696cf7e8a8d2f66d24eb221251ab0c05f7c948f /src/namestore/plugin_namestore_postgres.c | |
parent | d71e2f3b35de7fcce36806bdad44ecf4114f6740 (diff) |
rename GNUNET_PQ_QueryStatus to GNUNET_DB_QueryStatus
Diffstat (limited to 'src/namestore/plugin_namestore_postgres.c')
-rw-r--r-- | src/namestore/plugin_namestore_postgres.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/namestore/plugin_namestore_postgres.c b/src/namestore/plugin_namestore_postgres.c index 5a607cac50..b1a6529aaf 100644 --- a/src/namestore/plugin_namestore_postgres.c +++ b/src/namestore/plugin_namestore_postgres.c @@ -216,7 +216,7 @@ namestore_postgres_store_records (void *cls, GNUNET_PQ_query_param_string (label), GNUNET_PQ_query_param_end }; - enum GNUNET_PQ_QueryStatus res; + enum GNUNET_DB_QueryStatus res; if (data_size != GNUNET_GNSRECORD_records_serialize (rd_count, rd, @@ -229,7 +229,7 @@ namestore_postgres_store_records (void *cls, res = GNUNET_PQ_eval_prepared_non_select (plugin->dbh, "store_records", params); - if (GNUNET_PQ_STATUS_SUCCESS_NO_RESULTS != res) + if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS != res) return GNUNET_SYSERR; } return GNUNET_OK; @@ -362,7 +362,7 @@ namestore_postgres_lookup_records (void *cls, GNUNET_PQ_query_param_end }; struct ParserContext pc; - enum GNUNET_PQ_QueryStatus res; + enum GNUNET_DB_QueryStatus res; pc.iter = iter; pc.iter_cls = iter_cls; @@ -397,7 +397,7 @@ namestore_postgres_iterate_records (void *cls, void *iter_cls) { struct Plugin *plugin = cls; - enum GNUNET_PQ_QueryStatus res; + enum GNUNET_DB_QueryStatus res; struct ParserContext pc; pc.iter = iter; @@ -459,7 +459,7 @@ namestore_postgres_zone_to_name (void *cls, GNUNET_PQ_query_param_auto_from_type (value_zone), GNUNET_PQ_query_param_end }; - enum GNUNET_PQ_QueryStatus res; + enum GNUNET_DB_QueryStatus res; struct ParserContext pc; pc.iter = iter; |