summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-16 20:52:45 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-16 20:52:45 +0200
commit6bfe1eb75609fbcb6a8ef1b160d64140981c71e2 (patch)
tree9cbe5d9fdab05023eb1ac8787cbd9d481041d5a1 /src
parent9e2df4ccea8975257d151111000e1f89c071eac2 (diff)
downloadmerchant-6bfe1eb75609fbcb6a8ef1b160d64140981c71e2.tar.gz
merchant-6bfe1eb75609fbcb6a8ef1b160d64140981c71e2.tar.bz2
merchant-6bfe1eb75609fbcb6a8ef1b160d64140981c71e2.zip
API change, #6188
Diffstat (limited to 'src')
-rw-r--r--src/lib/merchant_api_delete_instance.c1
-rw-r--r--src/lib/merchant_api_delete_order.c1
-rw-r--r--src/lib/merchant_api_delete_product.c1
-rw-r--r--src/lib/merchant_api_delete_reserve.c1
-rw-r--r--src/lib/merchant_api_get_config.c1
-rw-r--r--src/lib/merchant_api_get_instance.c1
-rw-r--r--src/lib/merchant_api_get_instances.c1
-rw-r--r--src/lib/merchant_api_get_orders.c1
-rw-r--r--src/lib/merchant_api_get_product.c1
-rw-r--r--src/lib/merchant_api_get_products.c1
-rw-r--r--src/lib/merchant_api_get_reserve.c1
-rw-r--r--src/lib/merchant_api_get_reserves.c1
-rw-r--r--src/lib/merchant_api_get_tips.c1
-rw-r--r--src/lib/merchant_api_get_transfers.c1
-rw-r--r--src/lib/merchant_api_merchant_get_order.c1
-rw-r--r--src/lib/merchant_api_merchant_get_tip.c1
-rw-r--r--src/lib/merchant_api_wallet_get_order.c1
-rw-r--r--src/lib/merchant_api_wallet_get_tip.c1
18 files changed, 0 insertions, 18 deletions
diff --git a/src/lib/merchant_api_delete_instance.c b/src/lib/merchant_api_delete_instance.c
index edf73f87..6ee57882 100644
--- a/src/lib/merchant_api_delete_instance.c
+++ b/src/lib/merchant_api_delete_instance.c
@@ -177,7 +177,6 @@ instance_delete (struct GNUNET_CURL_Context *ctx,
MHD_HTTP_METHOD_DELETE));
idh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_delete_instance_finished,
idh);
}
diff --git a/src/lib/merchant_api_delete_order.c b/src/lib/merchant_api_delete_order.c
index 4b08e8ca..028697bd 100644
--- a/src/lib/merchant_api_delete_order.c
+++ b/src/lib/merchant_api_delete_order.c
@@ -164,7 +164,6 @@ TALER_MERCHANT_order_delete (
MHD_HTTP_METHOD_DELETE));
odh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_delete_order_finished,
odh);
}
diff --git a/src/lib/merchant_api_delete_product.c b/src/lib/merchant_api_delete_product.c
index 88607b42..3cfabdf8 100644
--- a/src/lib/merchant_api_delete_product.c
+++ b/src/lib/merchant_api_delete_product.c
@@ -175,7 +175,6 @@ TALER_MERCHANT_product_delete (
MHD_HTTP_METHOD_DELETE));
pdh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_delete_product_finished,
pdh);
}
diff --git a/src/lib/merchant_api_delete_reserve.c b/src/lib/merchant_api_delete_reserve.c
index e7652018..098b7437 100644
--- a/src/lib/merchant_api_delete_reserve.c
+++ b/src/lib/merchant_api_delete_reserve.c
@@ -183,7 +183,6 @@ reserve_delete (struct GNUNET_CURL_Context *ctx,
MHD_HTTP_METHOD_DELETE));
rdh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_delete_reserve_finished,
rdh);
}
diff --git a/src/lib/merchant_api_get_config.c b/src/lib/merchant_api_get_config.c
index 8a2d88b7..722d1f0a 100644
--- a/src/lib/merchant_api_get_config.c
+++ b/src/lib/merchant_api_get_config.c
@@ -225,7 +225,6 @@ TALER_MERCHANT_config_get (struct GNUNET_CURL_Context *ctx,
vgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_config_finished,
vgh);
return vgh;
diff --git a/src/lib/merchant_api_get_instance.c b/src/lib/merchant_api_get_instance.c
index af93b53c..ccd7bd8d 100644
--- a/src/lib/merchant_api_get_instance.c
+++ b/src/lib/merchant_api_get_instance.c
@@ -269,7 +269,6 @@ TALER_MERCHANT_instance_get (struct GNUNET_CURL_Context *ctx,
igh->url));
igh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_get_instance_finished,
igh);
return igh;
diff --git a/src/lib/merchant_api_get_instances.c b/src/lib/merchant_api_get_instances.c
index 604267c0..a1930fd7 100644
--- a/src/lib/merchant_api_get_instances.c
+++ b/src/lib/merchant_api_get_instances.c
@@ -268,7 +268,6 @@ TALER_MERCHANT_instances_get (struct GNUNET_CURL_Context *ctx,
igh->url));
igh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_instances_finished,
igh);
return igh;
diff --git a/src/lib/merchant_api_get_orders.c b/src/lib/merchant_api_get_orders.c
index 2f18a6a1..959493fe 100644
--- a/src/lib/merchant_api_get_orders.c
+++ b/src/lib/merchant_api_get_orders.c
@@ -362,7 +362,6 @@ TALER_MERCHANT_orders_get2 (
ogh->url));
ogh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_get_orders_finished,
ogh);
return ogh;
diff --git a/src/lib/merchant_api_get_product.c b/src/lib/merchant_api_get_product.c
index bc83c861..9c2fa9e2 100644
--- a/src/lib/merchant_api_get_product.c
+++ b/src/lib/merchant_api_get_product.c
@@ -254,7 +254,6 @@ TALER_MERCHANT_product_get (
pgh->url));
pgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_get_product_finished,
pgh);
return pgh;
diff --git a/src/lib/merchant_api_get_products.c b/src/lib/merchant_api_get_products.c
index c3edbde0..ba9ef88a 100644
--- a/src/lib/merchant_api_get_products.c
+++ b/src/lib/merchant_api_get_products.c
@@ -241,7 +241,6 @@ TALER_MERCHANT_products_get (
pgh->url));
pgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_get_products_finished,
pgh);
return pgh;
diff --git a/src/lib/merchant_api_get_reserve.c b/src/lib/merchant_api_get_reserve.c
index a30b4558..994921a3 100644
--- a/src/lib/merchant_api_get_reserve.c
+++ b/src/lib/merchant_api_get_reserve.c
@@ -288,7 +288,6 @@ TALER_MERCHANT_reserve_get (struct GNUNET_CURL_Context *ctx,
rgh->url));
rgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_reserve_get_finished,
rgh);
return rgh;
diff --git a/src/lib/merchant_api_get_reserves.c b/src/lib/merchant_api_get_reserves.c
index 428bc81c..43ebc6f4 100644
--- a/src/lib/merchant_api_get_reserves.c
+++ b/src/lib/merchant_api_get_reserves.c
@@ -271,7 +271,6 @@ TALER_MERCHANT_reserves_get (struct GNUNET_CURL_Context *ctx,
rgh->url));
rgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_reserves_get_finished,
rgh);
return rgh;
diff --git a/src/lib/merchant_api_get_tips.c b/src/lib/merchant_api_get_tips.c
index ee0ad1bf..19368186 100644
--- a/src/lib/merchant_api_get_tips.c
+++ b/src/lib/merchant_api_get_tips.c
@@ -309,7 +309,6 @@ TALER_MERCHANT_tips_get2 (struct GNUNET_CURL_Context *ctx,
tgh->url));
tgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_get_tips_finished,
tgh);
return tgh;
diff --git a/src/lib/merchant_api_get_transfers.c b/src/lib/merchant_api_get_transfers.c
index 859d97be..34d043fa 100644
--- a/src/lib/merchant_api_get_transfers.c
+++ b/src/lib/merchant_api_get_transfers.c
@@ -321,7 +321,6 @@ TALER_MERCHANT_transfers_get (
gth->url));
gth->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_transfers_get_finished,
gth);
return gth;
diff --git a/src/lib/merchant_api_merchant_get_order.c b/src/lib/merchant_api_merchant_get_order.c
index b29823f4..25cce306 100644
--- a/src/lib/merchant_api_merchant_get_order.c
+++ b/src/lib/merchant_api_merchant_get_order.c
@@ -479,7 +479,6 @@ TALER_MERCHANT_merchant_order_get (struct GNUNET_CURL_Context *ctx,
if (NULL == (omgh->job =
GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_merchant_order_get_finished,
omgh)))
{
diff --git a/src/lib/merchant_api_merchant_get_tip.c b/src/lib/merchant_api_merchant_get_tip.c
index e1f0f23e..fce45efd 100644
--- a/src/lib/merchant_api_merchant_get_tip.c
+++ b/src/lib/merchant_api_merchant_get_tip.c
@@ -310,7 +310,6 @@ TALER_MERCHANT_merchant_tip_get (struct GNUNET_CURL_Context *ctx,
tgh->url));
tgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_merchant_tip_get_finished,
tgh);
return tgh;
diff --git a/src/lib/merchant_api_wallet_get_order.c b/src/lib/merchant_api_wallet_get_order.c
index 799e57f5..b5468f65 100644
--- a/src/lib/merchant_api_wallet_get_order.c
+++ b/src/lib/merchant_api_wallet_get_order.c
@@ -474,7 +474,6 @@ TALER_MERCHANT_wallet_order_get (struct GNUNET_CURL_Context *ctx,
if (NULL == (owgh->job =
GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_wallet_get_order_finished,
owgh)))
{
diff --git a/src/lib/merchant_api_wallet_get_tip.c b/src/lib/merchant_api_wallet_get_tip.c
index d50b961c..66974738 100644
--- a/src/lib/merchant_api_wallet_get_tip.c
+++ b/src/lib/merchant_api_wallet_get_tip.c
@@ -219,7 +219,6 @@ TALER_MERCHANT_wallet_tip_get (struct GNUNET_CURL_Context *ctx,
tgh->job = GNUNET_CURL_job_add (ctx,
eh,
- GNUNET_YES,
&handle_wallet_tip_get_finished,
tgh);
return tgh;