commit 1e6adbf5d7f192e59a1b97697731be0491c3d75c
parent b4fc637130072ed0e49c614d12688240e91713b0
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 22 May 2020 11:06:19 +0200
fix ftbfs
Diffstat:
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
@@ -4675,14 +4675,14 @@ RETRY:
* #TALER_EC_NONE upon success
*/
static enum TALER_ErrorCode
-postgres_authorize_tip_TR (void *cls,
- const char *justification,
- const json_t *extra,
- const struct TALER_Amount *amount,
- const struct TALER_ReservePrivateKeyP *reserve_priv,
- const char *exchange_url,
- struct GNUNET_TIME_Absolute *expiration,
- struct GNUNET_HashCode *tip_id)
+postgres_authorize_tip (void *cls,
+ const char *justification,
+ const json_t *extra,
+ const struct TALER_Amount *amount,
+ const struct TALER_ReservePrivateKeyP *reserve_priv,
+ const char *exchange_url,
+ struct GNUNET_TIME_Absolute *expiration,
+ struct GNUNET_HashCode *tip_id)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
@@ -7235,7 +7235,6 @@ libtaler_plugin_merchantdb_postgres_init (void *cls)
plugin->find_proof_by_wtid = &postgres_find_proof_by_wtid;
plugin->get_authorized_tip_amount = &postgres_get_authorized_tip_amount;
plugin->enable_tip_reserve_TR = &postgres_enable_tip_reserve_TR;
- plugin->authorize_tip_TR = &postgres_authorize_tip_TR;
plugin->lookup_tip_by_id = &postgres_lookup_tip_by_id;
plugin->pickup_tip_TR = &postgres_pickup_tip_TR;