summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-10 15:49:54 +0200
committerChristian Grothoff <christian@grothoff.org>2015-06-10 15:49:54 +0200
commitd45534c574cad8a001a113358885adf989132f8d (patch)
tree083809d47c54678b20700dabee1e48e4b70a74b5 /src
parent0de322fda80f46985650f2dbfd678b20f8ff59dc (diff)
downloadexchange-d45534c574cad8a001a113358885adf989132f8d.tar.gz
exchange-d45534c574cad8a001a113358885adf989132f8d.tar.bz2
exchange-d45534c574cad8a001a113358885adf989132f8d.zip
adding refs to bugs
Diffstat (limited to 'src')
-rw-r--r--src/mintdb/plugin_mintdb_postgres.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
index 4d5089f83..03838220c 100644
--- a/src/mintdb/plugin_mintdb_postgres.c
+++ b/src/mintdb/plugin_mintdb_postgres.c
@@ -2794,10 +2794,11 @@ libtaler_plugin_mintdb_postgres_init (void *cls)
TALER_LOG_ERROR ("Cannnot create pthread key.\n");
return NULL;
}
- /* FIXME: use configuration section with "postgres" in its name... */
+ /* FIXME: use configuration section with "postgres" in its name. #3835 */
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
- "mint", "db_conn_str",
+ "mint",
+ "db_conn_str",
&pg->connection_cfg_str))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
@@ -2840,8 +2841,8 @@ libtaler_plugin_mintdb_postgres_init (void *cls)
plugin->get_link_data_list = &postgres_get_link_data_list;
plugin->free_link_data_list = &common_free_link_data_list;
plugin->get_transfer = &postgres_get_transfer;
- // plugin->have_lock = &postgres_have_lock;
- // plugin->insert_lock = &postgres_insert_lock;
+ // plugin->have_lock = &postgres_have_lock; /* #3625 */
+ // plugin->insert_lock = &postgres_insert_lock; /* #3625 */
plugin->get_coin_transactions = &postgres_get_coin_transactions;
plugin->free_coin_transaction_list = &common_free_coin_transaction_list;
return plugin;