summaryrefslogtreecommitdiff
path: root/src/lib/merchant_api_get_reserves.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/merchant_api_get_reserves.c')
-rw-r--r--src/lib/merchant_api_get_reserves.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/lib/merchant_api_get_reserves.c b/src/lib/merchant_api_get_reserves.c
index 102d4335..017dcd9c 100644
--- a/src/lib/merchant_api_get_reserves.c
+++ b/src/lib/merchant_api_get_reserves.c
@@ -226,8 +226,8 @@ struct TALER_MERCHANT_ReservesGetHandle *
TALER_MERCHANT_reserves_get (struct GNUNET_CURL_Context *ctx,
const char *backend_url,
struct GNUNET_TIME_Absolute after,
- enum TALER_MERCHANT_YesNoAll active,
- enum TALER_MERCHANT_YesNoAll failures,
+ enum TALER_EXCHANGE_YesNoAll active,
+ enum TALER_EXCHANGE_YesNoAll failures,
TALER_MERCHANT_ReservesGetCallback cb,
void *cb_cls)
{
@@ -241,15 +241,10 @@ TALER_MERCHANT_reserves_get (struct GNUNET_CURL_Context *ctx,
rgh->ctx = ctx;
rgh->cb = cb;
rgh->cb_cls = cb_cls;
- if (TALER_MERCHANT_YNA_YES == active)
- active_s = "yes";
- if (TALER_MERCHANT_YNA_NO == active)
- active_s = "no";
- if (TALER_MERCHANT_YNA_YES == failures)
- failures_s = "yes";
- if (TALER_MERCHANT_YNA_NO == failures)
- failures_s = "no";
- after_s = GNUNET_strdup (GNUNET_STRINGS_absolute_time_to_string (after));
+ active_s = TALER_yna_to_string (active);
+ failures_s = TALER_yna_to_string (failures);
+ after_s = GNUNET_strdup (GNUNET_STRINGS_absolute_time_to_string (
+ after));
rgh->url = TALER_url_join (backend_url,
"reserves",
"active",