commit 9e2df4ccea8975257d151111000e1f89c071eac2
parent 35c77313481a6566bdc10d8633a501c6f3925830
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 16 Jul 2020 20:28:02 +0200
avoid boolean flags, see #6188
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c
@@ -896,8 +896,7 @@ keys_mgmt_cb (void *cls,
}
expire = TALER_EXCHANGE_check_keys_current (exchange->conn,
- GNUNET_NO,
- GNUNET_NO);
+ TALER_EXCHANGE_CKF_NONE);
exchange->first_retry = GNUNET_TIME_relative_to_absolute (RELOAD_DELAY);
if (0 == expire.abs_value_us)
delay = RELOAD_DELAY;
@@ -1041,8 +1040,7 @@ TMH_EXCHANGES_find_exchange (const char *chosen_exchange,
exchange->retry_delay,
FORCED_RELOAD_DELAY));
TALER_EXCHANGE_check_keys_current (exchange->conn,
- GNUNET_YES,
- GNUNET_NO);
+ TALER_EXCHANGE_CKF_FORCE_DOWNLOAD);
return fo;
}